18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 28c2ecf20Sopenharmony_ci#ifndef __VDSO_TIME64_H 38c2ecf20Sopenharmony_ci#define __VDSO_TIME64_H 48c2ecf20Sopenharmony_ci 58c2ecf20Sopenharmony_ci/* Parameters used to convert the timespec values: */ 68c2ecf20Sopenharmony_ci#define MSEC_PER_SEC 1000L 78c2ecf20Sopenharmony_ci#define USEC_PER_MSEC 1000L 88c2ecf20Sopenharmony_ci#define NSEC_PER_USEC 1000L 98c2ecf20Sopenharmony_ci#define NSEC_PER_MSEC 1000000L 108c2ecf20Sopenharmony_ci#define USEC_PER_SEC 1000000L 118c2ecf20Sopenharmony_ci#define NSEC_PER_SEC 1000000000L 128c2ecf20Sopenharmony_ci#define FSEC_PER_SEC 1000000000000000LL 138c2ecf20Sopenharmony_ci 148c2ecf20Sopenharmony_ci#endif /* __VDSO_TIME64_H */ 15