Fix: time redefinition warnings on macOS builds
[lttng-tools.git] / src / common / time.h
diff --git a/src/common/time.h b/src/common/time.h
new file mode 100644 (file)
index 0000000..8177077
--- /dev/null
@@ -0,0 +1,27 @@
+/*
+ * Copyright (C) 2016 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA
+ */
+
+#ifndef LTTNG_TIME_H
+#define LTTNG_TIME_H
+
+#define MSEC_PER_SEC   1000ULL
+#define NSEC_PER_SEC   1000000000ULL
+#define NSEC_PER_MSEC  1000000ULL
+#define NSEC_PER_USEC  1000ULL
+
+#endif /* LTTNG_TIME_H */
This page took 0.025207 seconds and 4 git commands to generate.