vdso.h 542 B

1234567891011121314
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __ARCH_S390_KERNEL_VDSO64_VDSO_H
  3. #define __ARCH_S390_KERNEL_VDSO64_VDSO_H
  4. #include <vdso/datapage.h>
  5. struct getcpu_cache;
  6. int __s390_vdso_getcpu(unsigned *cpu, unsigned *node, struct getcpu_cache *unused);
  7. int __s390_vdso_gettimeofday(struct __kernel_old_timeval *tv, struct timezone *tz);
  8. int __s390_vdso_clock_gettime(clockid_t clock, struct __kernel_timespec *ts);
  9. int __s390_vdso_clock_getres(clockid_t clock, struct __kernel_timespec *ts);
  10. #endif /* __ARCH_S390_KERNEL_VDSO64_VDSO_H */