You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
467 B
18 lines
467 B
20 years ago
|
#include "linux/sched.h"
|
||
|
#include "linux/stddef.h"
|
||
|
|
||
|
extern void print(char *name, char *type, int offset);
|
||
|
extern void print_ptr(char *name, char *type, int offset);
|
||
|
extern void print_head(void);
|
||
|
extern void print_tail(void);
|
||
|
|
||
|
int main(int argc, char **argv)
|
||
|
{
|
||
|
print_head();
|
||
|
print_ptr("TASK_REGS", "union uml_pt_regs",
|
||
|
offsetof(struct task_struct, thread.regs));
|
||
|
print("TASK_PID", "int", offsetof(struct task_struct, pid));
|
||
|
print_tail();
|
||
|
return(0);
|
||
|
}
|