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