summaryrefslogtreecommitdiffstats
path: root/arch/ppc/kernel/mk_defs.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>1998-03-17 22:05:47 +0000
committerRalf Baechle <ralf@linux-mips.org>1998-03-17 22:05:47 +0000
commit27cfca1ec98e91261b1a5355d10a8996464b63af (patch)
tree8e895a53e372fa682b4c0a585b9377d67ed70d0e /arch/ppc/kernel/mk_defs.c
parent6a76fb7214c477ccf6582bd79c5b4ccc4f9c41b1 (diff)
Look Ma' what I found on my harddisk ...
o New faster syscalls for 2.1.x, too o Upgrade to 2.1.89. Don't try to run this. It's flaky as hell. But feel free to debug ...
Diffstat (limited to 'arch/ppc/kernel/mk_defs.c')
-rw-r--r--arch/ppc/kernel/mk_defs.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/ppc/kernel/mk_defs.c b/arch/ppc/kernel/mk_defs.c
index 80f10c59e..8db1763db 100644
--- a/arch/ppc/kernel/mk_defs.c
+++ b/arch/ppc/kernel/mk_defs.c
@@ -32,12 +32,12 @@ main(void)
DEFINE(STATE, offsetof(struct task_struct, state));
DEFINE(NEXT_TASK, offsetof(struct task_struct, next_task));
DEFINE(COUNTER, offsetof(struct task_struct, counter));
- DEFINE(BLOCKED, offsetof(struct task_struct, blocked));
- DEFINE(SIGNAL, offsetof(struct task_struct, signal));
+ DEFINE(SIGPENDING, offsetof(struct task_struct, sigpending));
DEFINE(TSS, offsetof(struct task_struct, tss));
- DEFINE(KSP, offsetof(struct thread_struct, ksp));
- /*DEFINE(PG_TABLES, offsetof(struct thread_struct, pg_tables));*/
DEFINE(MM, offsetof(struct task_struct, mm));
+ DEFINE(TASK_STRUCT_SIZE, sizeof(struct task_struct));
+ DEFINE(KSP, offsetof(struct thread_struct, ksp));
+ DEFINE(PG_TABLES, offsetof(struct thread_struct, pg_tables));
DEFINE(PGD, offsetof(struct mm_struct, pgd));
DEFINE(LAST_SYSCALL, offsetof(struct thread_struct, last_syscall));
DEFINE(PT_REGS, offsetof(struct thread_struct, regs));