RT-AC66 3.0.0.4.374.130 core
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / arch / um / include / sysdep-x86_64 / kernel-offsets.h
blobc978b589df419abc42c818dba54012dcbc8fb3f6
1 #include <linux/stddef.h>
2 #include <linux/sched.h>
3 #include <linux/time.h>
4 #include <linux/elf.h>
5 #include <linux/crypto.h>
6 #include <asm/page.h>
7 #include <asm/mman.h>
9 #define DEFINE(sym, val) \
10 asm volatile("\n->" #sym " %0 " #val : : "i" (val))
12 #define DEFINE_STR1(x) #x
13 #define DEFINE_STR(sym, val) asm volatile("\n->" #sym " " DEFINE_STR1(val) " " #val: : )
15 #define BLANK() asm volatile("\n->" : : )
17 #define OFFSET(sym, str, mem) \
18 DEFINE(sym, offsetof(struct str, mem));
20 #define __NO_STUBS 1
21 #undef __SYSCALL
22 #undef _ASM_X86_64_UNISTD_H_
23 #define __SYSCALL(nr, sym) [nr] = 1,
24 static char syscalls[] = {
25 #include <asm/arch/unistd.h>
28 void foo(void)
30 #include <common-offsets.h>
31 DEFINE(UM_NR_syscall_max, sizeof(syscalls) - 1);