Lines Matching refs:DEFINE
45 DEFINE(TASK_STATE, offsetof(struct task_struct, state)); in main()
46 DEFINE(TASK_FLAGS, offsetof(struct task_struct, flags)); in main()
47 DEFINE(TASK_PTRACE, offsetof(struct task_struct, ptrace)); in main()
48 DEFINE(TASK_THREAD, offsetof(struct task_struct, thread)); in main()
49 DEFINE(TASK_MM, offsetof(struct task_struct, mm)); in main()
50 DEFINE(TASK_ACTIVE_MM, offsetof(struct task_struct, active_mm)); in main()
53 DEFINE(TI_TASK, offsetof(struct thread_info, task)); in main()
54 DEFINE(TI_FLAGS, offsetof(struct thread_info, flags)); in main()
55 DEFINE(TI_PREEMPT, offsetof(struct thread_info, preempt_count)); in main()
56 DEFINE(TI_KSP, offsetof(struct thread_info, ksp)); in main()
58 DEFINE(PT_SIZE, sizeof(struct pt_regs)); in main()
61 DEFINE(STACK_FRAME_OVERHEAD, STACK_FRAME_OVERHEAD); in main()
62 DEFINE(INT_FRAME_SIZE, STACK_FRAME_OVERHEAD + sizeof(struct pt_regs)); in main()
64 DEFINE(NUM_USER_SEGMENTS, TASK_SIZE >> 28); in main()