2012-09-09 02:43:14 +00:00
|
|
|
#define __SYSCALL_LL_E(x) \
|
|
|
|
((union { long long ll; long l[2]; }){ .ll = x }).l[0], \
|
|
|
|
((union { long long ll; long l[2]; }){ .ll = x }).l[1]
|
|
|
|
#define __SYSCALL_LL_O(x) __SYSCALL_LL_E((x))
|
|
|
|
|
|
|
|
static inline long __syscall0(long n)
|
|
|
|
{
|
|
|
|
unsigned long __ret;
|
2015-04-14 14:22:12 +00:00
|
|
|
__asm__ __volatile__ (".hidden __vsyscall ; call __vsyscall" : "=a"(__ret) : "a"(n) : "memory");
|
2012-09-09 02:43:14 +00:00
|
|
|
return __ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline long __syscall1(long n, long a1)
|
|
|
|
{
|
|
|
|
unsigned long __ret;
|
2015-04-14 14:22:12 +00:00
|
|
|
__asm__ __volatile__ (".hidden __vsyscall ; call __vsyscall" : "=a"(__ret) : "a"(n), "d"(a1) : "memory");
|
2012-09-09 02:43:14 +00:00
|
|
|
return __ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline long __syscall2(long n, long a1, long a2)
|
|
|
|
{
|
|
|
|
unsigned long __ret;
|
2015-04-14 14:22:12 +00:00
|
|
|
__asm__ __volatile__ (".hidden __vsyscall ; call __vsyscall" : "=a"(__ret) : "a"(n), "d"(a1), "c"(a2) : "memory");
|
2012-09-09 02:43:14 +00:00
|
|
|
return __ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline long __syscall3(long n, long a1, long a2, long a3)
|
|
|
|
{
|
|
|
|
unsigned long __ret;
|
2015-04-14 14:22:12 +00:00
|
|
|
__asm__ __volatile__ (".hidden __vsyscall ; call __vsyscall" : "=a"(__ret) : "a"(n), "d"(a1), "c"(a2), "D"(a3) : "memory");
|
2012-09-09 02:43:14 +00:00
|
|
|
return __ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline long __syscall4(long n, long a1, long a2, long a3, long a4)
|
|
|
|
{
|
|
|
|
unsigned long __ret;
|
2015-04-14 14:22:12 +00:00
|
|
|
__asm__ __volatile__ (".hidden __vsyscall ; call __vsyscall" : "=a"(__ret) : "a"(n), "d"(a1), "c"(a2), "D"(a3), "S"(a4) : "memory");
|
2012-09-09 02:43:14 +00:00
|
|
|
return __ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline long __syscall5(long n, long a1, long a2, long a3, long a4, long a5)
|
|
|
|
{
|
|
|
|
unsigned long __ret;
|
2015-04-14 14:22:12 +00:00
|
|
|
__asm__ __volatile__ ("push %6 ; .hidden __vsyscall ; call __vsyscall ; add $4,%%esp" : "=a"(__ret) : "a"(n), "d"(a1), "c"(a2), "D"(a3), "S"(a4), "g"(a5) : "memory");
|
2012-09-09 02:43:14 +00:00
|
|
|
return __ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline long __syscall6(long n, long a1, long a2, long a3, long a4, long a5, long a6)
|
|
|
|
{
|
|
|
|
unsigned long __ret;
|
2015-04-14 14:22:12 +00:00
|
|
|
__asm__ __volatile__ ("push %6 ; .hidden __vsyscall6 ; call __vsyscall6 ; add $4,%%esp" : "=a"(__ret) : "a"(n), "d"(a1), "c"(a2), "D"(a3), "S"(a4), "g"(0+(long[]){a5, a6}) : "memory");
|
2012-09-09 02:43:14 +00:00
|
|
|
return __ret;
|
|
|
|
}
|
2014-06-06 07:29:36 +00:00
|
|
|
|
|
|
|
#define VDSO_USEFUL
|
|
|
|
#define VDSO_CGT_SYM "__vdso_clock_gettime"
|
|
|
|
#define VDSO_CGT_VER "LINUX_2.6"
|