39 lines
1.2 KiB
C
39 lines
1.2 KiB
C
/*
|
|
* time.h - DTrace Time include file.
|
|
*
|
|
* $Id: time.h,v 1.1.1.1 2015/09/30 22:01:09 christos Exp $
|
|
*
|
|
* 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)))
|
|
|