xref: /original-bsd/sys/i386/include/proc.h (revision c41723e9)
1 /*
2  * Copyright (c) 1992 Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)proc.h	5.1 (Berkeley) 02/05/92
8  */
9 
10 /*
11  * Machine-dependent part of the proc structure for hp300.
12  */
13 struct mdproc {
14 	int	md_flags;		/* machine-dependent flags */
15 	int	*md_regs;		/* registers on current frame */
16 };
17 
18 /* md_flags */
19 #define	MDP_AST		0x0001	/* async trap pending */
20