xref: /original-bsd/sys/hp300/include/proc.h (revision e59fb703)
1 /*
2  * Copyright (c) 1991 Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)proc.h	7.1 (Berkeley) 05/15/91
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 #ifdef notyet
16 	int	*p_regs;		/* registers on current frame */
17 #endif
18 };
19 
20 /* md_flags */
21 #define	MDP_AST		0x0001	/* async trap pending */
22