mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
37f078ff4c
Maintaining offsets by hand is no fun. Signed-off-by: Richard Weinberger <richard@nod.at>
14 lines
340 B
C
14 lines
340 B
C
#include <linux/thread_info.h>
|
|
#include <linux/kbuild.h>
|
|
|
|
int foo(void)
|
|
{
|
|
OFFSET(TI_TASK, thread_info, task);
|
|
OFFSET(TI_FLAGS, thread_info, flags);
|
|
OFFSET(TI_STATUS, thread_info, status);
|
|
OFFSET(TI_CPU, thread_info, cpu);
|
|
OFFSET(TI_PRE_COUNT, thread_info, preempt_count);
|
|
OFFSET(TI_ADDR_LIMIT, thread_info, addr_limit);
|
|
|
|
return 0;
|
|
}
|