16 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2#ifndef __VDSO_TIME64_H3#define __VDSO_TIME64_H4 5/* Parameters used to convert the timespec values: */6#define MSEC_PER_SEC 1000L7#define USEC_PER_MSEC 1000L8#define NSEC_PER_USEC 1000L9#define NSEC_PER_MSEC 1000000L10#define USEC_PER_SEC 1000000L11#define NSEC_PER_SEC 1000000000L12#define PSEC_PER_SEC 1000000000000LL13#define FSEC_PER_SEC 1000000000000000LL14 15#endif /* __VDSO_TIME64_H */16