xref: /aosp_15_r20/external/trace-cmd/include/linux/time64.h (revision 58e6ee5f017f6a8912852c892d18457e4bafb554)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 
3 #ifndef _TOOLS_LINUX_TIME64_H
4 #define _TOOLS_LINUX_TIME64_H
5 
6 #define MSEC_PER_SEC	1000L
7 #define USEC_PER_MSEC	1000L
8 #define NSEC_PER_USEC	1000L
9 #define NSEC_PER_MSEC	1000000L
10 #define USEC_PER_SEC	1000000L
11 #define NSEC_PER_SEC	1000000000L
12 #define FSEC_PER_SEC	1000000000000000LL
13 
14 #endif /* _LINUX_TIME64_H */
15