RT-AC66 3.0.0.4.374.130 core
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / arch / um / include / sysdep-i386 / kernel-offsets.h
blob97ec9d894d7539a7ef61c08b4196b01b547d6e91
1 #include <linux/stddef.h>
2 #include <linux/sched.h>
3 #include <linux/elf.h>
4 #include <linux/crypto.h>
5 #include <asm/mman.h>
7 #define DEFINE(sym, val) \
8 asm volatile("\n->" #sym " %0 " #val : : "i" (val))
10 #define STR(x) #x
11 #define DEFINE_STR(sym, val) asm volatile("\n->" #sym " " STR(val) " " #val: : )
13 #define BLANK() asm volatile("\n->" : : )
15 #define OFFSET(sym, str, mem) \
16 DEFINE(sym, offsetof(struct str, mem));
18 void foo(void)
20 OFFSET(HOST_TASK_DEBUGREGS, task_struct, thread.arch.debugregs);
21 #include <common-offsets.h>