Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * This program is used to generate definitions needed by |
| 3 | * assembly language modules. |
| 4 | * |
| 5 | * We use the technique used in the OSF Mach kernel code: |
| 6 | * generate asm statements containing #defines, |
| 7 | * compile this file to assembler, and then extract the |
| 8 | * #defines from the assembly-language output. |
| 9 | */ |
| 10 | |
| 11 | #include <linux/stddef.h> |
| 12 | #include <linux/sched.h> |
| 13 | #include <linux/kernel_stat.h> |
| 14 | #include <linux/ptrace.h> |
| 15 | #include <linux/hardirq.h> |
Christoph Lameter | 8972331 | 2008-04-29 01:04:12 -0700 | [diff] [blame] | 16 | #include <linux/kbuild.h> |
| 17 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <asm/irq.h> |
| 19 | #include <asm/errno.h> |
| 20 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | int main (void) |
| 22 | { |
| 23 | /* offsets into the task struct */ |
| 24 | DEFINE (TASK_STATE, offsetof (struct task_struct, state)); |
| 25 | DEFINE (TASK_FLAGS, offsetof (struct task_struct, flags)); |
| 26 | DEFINE (TASK_PTRACE, offsetof (struct task_struct, ptrace)); |
| 27 | DEFINE (TASK_BLOCKED, offsetof (struct task_struct, blocked)); |
| 28 | DEFINE (TASK_THREAD, offsetof (struct task_struct, thread)); |
Roman Zippel | f7e4217 | 2007-05-09 02:35:17 -0700 | [diff] [blame] | 29 | DEFINE (TASK_THREAD_INFO, offsetof (struct task_struct, stack)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | DEFINE (TASK_MM, offsetof (struct task_struct, mm)); |
| 31 | DEFINE (TASK_ACTIVE_MM, offsetof (struct task_struct, active_mm)); |
| 32 | DEFINE (TASK_PID, offsetof (struct task_struct, pid)); |
| 33 | |
| 34 | /* offsets into the kernel_stat struct */ |
| 35 | DEFINE (STAT_IRQ, offsetof (struct kernel_stat, irqs)); |
| 36 | |
| 37 | |
| 38 | /* signal defines */ |
| 39 | DEFINE (SIGSEGV, SIGSEGV); |
| 40 | DEFINE (SEGV_MAPERR, SEGV_MAPERR); |
| 41 | DEFINE (SIGTRAP, SIGTRAP); |
| 42 | DEFINE (SIGCHLD, SIGCHLD); |
| 43 | DEFINE (SIGILL, SIGILL); |
| 44 | DEFINE (TRAP_TRACE, TRAP_TRACE); |
| 45 | |
| 46 | /* ptrace flag bits */ |
| 47 | DEFINE (PT_PTRACED, PT_PTRACED); |
| 48 | DEFINE (PT_DTRACE, PT_DTRACE); |
| 49 | |
| 50 | /* error values */ |
| 51 | DEFINE (ENOSYS, ENOSYS); |
| 52 | |
| 53 | /* clone flag bits */ |
| 54 | DEFINE (CLONE_VFORK, CLONE_VFORK); |
| 55 | DEFINE (CLONE_VM, CLONE_VM); |
| 56 | |
| 57 | return 0; |
| 58 | } |