Expand PMF_FN_* macros.
[netbsd-mini2440.git] / sys / arch / ia64 / include / proc.h
bloba4ab6e24e92af4d017451c4ec0e4102be8a8180f
1 #ifndef _IA64_PROC_H_
2 #define _IA64_PROC_H_
4 #include <sys/user.h> /* for sizeof(struct user) */
5 #include <machine/frame.h>
7 /*
8 * Machine-dependent part of the lwp structure for ia64
9 */
10 struct mdlwp {
11 u_long md_flags;
12 struct trapframe *md_tf; /* trap/syscall registers */
13 __volatile int md_astpending; /* AST pending for this process */
17 * md_flags usage
18 * --------------
19 * XXX:
22 struct mdproc {
23 /* XXX: Todo */
24 void (*md_syscall)(struct trapframe *);
25 /* Syscall handling function */
28 #endif /* _IA64_PROC_H_ */