[PATCH] include/asm-h8300/page.h: remove unused KTHREAD_SIZE #define
[linux-2.6/libata-dev.git] / arch / um / sys-i386 / kernel-offsets.c
blob35db850575066e5a34125f674d0257e98a24f8ee
1 #include <linux/config.h>
2 #include <linux/stddef.h>
3 #include <linux/sched.h>
4 #include <linux/time.h>
5 #include <linux/elf.h>
6 #include <asm/page.h>
8 #define DEFINE(sym, val) \
9 asm volatile("\n->" #sym " %0 " #val : : "i" (val))
11 #define STR(x) #x
12 #define DEFINE_STR(sym, val) asm volatile("\n->" #sym " " STR(val) " " #val: : )
14 #define BLANK() asm volatile("\n->" : : )
16 #define OFFSET(sym, str, mem) \
17 DEFINE(sym, offsetof(struct str, mem));
19 void foo(void)
21 OFFSET(HOST_TASK_DEBUGREGS, task_struct, thread.arch.debugregs);
22 #ifdef CONFIG_MODE_TT
23 OFFSET(HOST_TASK_EXTERN_PID, task_struct, thread.mode.tt.extern_pid);
24 #endif
25 #include <common-offsets.h>