blob: 8a79d3a247e6f3059d804a9680ee6740634e01c8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef __ASM_VDSO_H
#define __ASM_VDSO_H
struct timespec;
extern int (*__vdso_clock_gettime)(int, struct timespec *);
extern int (*__vdso_getcpu)(unsigned *, unsigned *, void *);
extern int (*__vdso_time)(long *);
#endif
|