1 1.1 cherry #ifndef _IA64_PROC_H_ 2 1.1 cherry #define _IA64_PROC_H_ 3 1.1 cherry 4 1.1 cherry #include <machine/frame.h> 5 1.1 cherry /* 6 1.2 skrll * Machine-dependent part of the lwp structure for ia64 7 1.1 cherry */ 8 1.1 cherry struct mdlwp { 9 1.1 cherry u_long md_flags; 10 1.1 cherry struct trapframe *md_tf; /* trap/syscall registers */ 11 1.2.10.1 keiichi __volatile int md_astpending; /* AST pending for this process */ 12 1.1 cherry }; 13 1.1 cherry 14 1.1 cherry /* 15 1.1 cherry * md_flags usage 16 1.1 cherry * -------------- 17 1.1 cherry * XXX: 18 1.1 cherry */ 19 1.1 cherry 20 1.1 cherry struct mdproc { 21 1.1 cherry /* XXX: Todo */ 22 1.1 cherry void (*md_syscall)(struct trapframe *); 23 1.1 cherry /* Syscall handling function */ 24 1.1 cherry }; 25 1.1 cherry 26 1.1 cherry #endif /* _IA64_PROC_H_ */ 27