Home | History | Annotate | Line # | Download | only in include
proc.h revision 1.2
      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.1  cherry };
     12  1.1  cherry 
     13  1.1  cherry /*
     14  1.1  cherry  * md_flags usage
     15  1.1  cherry  * --------------
     16  1.1  cherry  * XXX:
     17  1.1  cherry  */
     18  1.1  cherry 
     19  1.1  cherry struct mdproc {
     20  1.1  cherry   /* XXX: Todo */
     21  1.1  cherry 	void	(*md_syscall)(struct trapframe *);
     22  1.1  cherry 					/* Syscall handling function */
     23  1.1  cherry 	__volatile int md_astpending;	/* AST pending for this process */
     24  1.1  cherry };
     25  1.1  cherry 
     26  1.1  cherry #endif /* _IA64_PROC_H_ */
     27