ish/kernel/vdso.h
2019-05-12 09:11:59 -07:00

10 lines
184 B
C

#ifndef KERNEL_VDSO_H
#define KERNEL_VDSO_H
#define VDSO_PAGES 1
extern const char vdso_data[VDSO_PAGES * (1 << 12)] __asm__("vdso_data");
int vdso_symbol(const char *name);
#endif