blob: cd3f7694e9b9240e20455a5cb3933c1a343b0f3b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 * On sparc, thread_info data is static and TI_XXX offsets are computed by hand.
11 */
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/sched.h>
14// #include <linux/mm.h>
Christoph Lameter32b07672008-04-29 01:04:01 -070015#include <linux/kbuild.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
17int foo(void)
18{
19 DEFINE(AOFF_task_thread, offsetof(struct task_struct, thread));
20 BLANK();
21 /* XXX This is the stuff for sclow.S, kill it. */
22 DEFINE(AOFF_task_pid, offsetof(struct task_struct, pid));
23 DEFINE(AOFF_task_uid, offsetof(struct task_struct, uid));
24 DEFINE(AOFF_task_gid, offsetof(struct task_struct, gid));
25 DEFINE(AOFF_task_euid, offsetof(struct task_struct, euid));
26 DEFINE(AOFF_task_egid, offsetof(struct task_struct, egid));
Roman Zippelf7e42172007-05-09 02:35:17 -070027 /* DEFINE(THREAD_INFO, offsetof(struct task_struct, stack)); */
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 DEFINE(ASIZ_task_uid, sizeof(current->uid));
29 DEFINE(ASIZ_task_gid, sizeof(current->gid));
30 DEFINE(ASIZ_task_euid, sizeof(current->euid));
31 DEFINE(ASIZ_task_egid, sizeof(current->egid));
32 BLANK();
33 DEFINE(AOFF_thread_fork_kpsr,
34 offsetof(struct thread_struct, fork_kpsr));
35 BLANK();
36 DEFINE(AOFF_mm_context, offsetof(struct mm_struct, context));
37
38 /* DEFINE(NUM_USER_SEGMENTS, TASK_SIZE>>28); */
39 return 0;
40}