Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef __VDSO_TIME64_H
0003 #define __VDSO_TIME64_H
0004 
0005 /* Parameters used to convert the timespec values: */
0006 #define MSEC_PER_SEC    1000L
0007 #define USEC_PER_MSEC   1000L
0008 #define NSEC_PER_USEC   1000L
0009 #define NSEC_PER_MSEC   1000000L
0010 #define USEC_PER_SEC    1000000L
0011 #define NSEC_PER_SEC    1000000000L
0012 #define PSEC_PER_SEC    1000000000000LL
0013 #define FSEC_PER_SEC    1000000000000000LL
0014 
0015 #endif /* __VDSO_TIME64_H */