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