a31769ed3e
The next group of helpers is a bit trickier - they want the constants similar to those in user-offsets.h, but we need target sc.h for it. So we can't put that into user-offsets (sc.h depends on it) and need the second generated header for that stuff (kernel-offsets.h. BFD... Signed-off-by: Al Viro <viro@parcelfarce.linux.theplanet.co.uk> Signed-off-by: Jeff Dike <jdike@addtoit.com> Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
15 lines
516 B
C
15 lines
516 B
C
/* for use by sys-$SUBARCH/kernel-offsets.c */
|
|
|
|
OFFSET(TASK_REGS, task_struct, thread.regs);
|
|
OFFSET(TASK_PID, task_struct, pid);
|
|
DEFINE(UM_KERN_PAGE_SIZE, PAGE_SIZE);
|
|
DEFINE(UM_NSEC_PER_SEC, NSEC_PER_SEC);
|
|
DEFINE_STR(UM_KERN_EMERG, KERN_EMERG);
|
|
DEFINE_STR(UM_KERN_ALERT, KERN_ALERT);
|
|
DEFINE_STR(UM_KERN_CRIT, KERN_CRIT);
|
|
DEFINE_STR(UM_KERN_ERR, KERN_ERR);
|
|
DEFINE_STR(UM_KERN_WARNING, KERN_WARNING);
|
|
DEFINE_STR(UM_KERN_NOTICE, KERN_NOTICE);
|
|
DEFINE_STR(UM_KERN_INFO, KERN_INFO);
|
|
DEFINE_STR(UM_KERN_DEBUG, KERN_DEBUG);
|