summaryrefslogtreecommitdiffstats
path: root/cddl/contrib/dtracetoolkit/Include/time.h
diff options
context:
space:
mode:
Diffstat (limited to 'cddl/contrib/dtracetoolkit/Include/time.h')
-rw-r--r--cddl/contrib/dtracetoolkit/Include/time.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/cddl/contrib/dtracetoolkit/Include/time.h b/cddl/contrib/dtracetoolkit/Include/time.h
new file mode 100644
index 0000000..76caa2e
--- /dev/null
+++ b/cddl/contrib/dtracetoolkit/Include/time.h
@@ -0,0 +1,38 @@
+/*
+ * time.h - DTrace Time include file.
+ *
+ * $Id: time.h 36 2007-09-15 06:51:18Z brendan $
+ *
+ * COPYRIGHT: Copyright (c) 2007 Brendan Gregg.
+ *
+ * CDDL HEADER START
+ *
+ * The contents of this file are subject to the terms of the
+ * Common Development and Distribution License, Version 1.0 only
+ * (the "License"). You may not use this file except in compliance
+ * with the License.
+ *
+ * You can obtain a copy of the license at Docs/cddl1.txt
+ * or http://www.opensolaris.org/os/licensing.
+ * See the License for the specific language governing permissions
+ * and limitations under the License.
+ *
+ * CDDL HEADER END
+ *
+ * 16-Sep-2007 Brendan Gregg Created this.
+ */
+
+/*
+ * TIME_HHMMSS - Returns GMT time as a "HH:MM:SS" string.
+ *
+ * eg, "21:53:07"
+ */
+#define TIME_HHMMSS \
+ strjoin(strjoin(strjoin(strjoin(strjoin( \
+ (((walltimestamp / 1000000000) % 86400) / 3600) < 10 ? "0" : "",\
+ lltostr(((walltimestamp / 1000000000) % 86400) / 3600)), ":"), \
+ strjoin((((walltimestamp / 1000000000) % 3600) / 60) < 10 ? \
+ "0" : "", lltostr(((walltimestamp / 1000000000) % 3600) / 60))),\
+ ":"), strjoin(((walltimestamp / 1000000000) % 60) < 10 ? \
+ "0" : "", lltostr((walltimestamp / 1000000000) % 60)))
+
OpenPOWER on IntegriCloud