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