proc.h revision 4
1121749Sume/*
2121749Sume * Copyright (c) 1991 Regents of the University of California.
3121749Sume * All rights reserved.
4121749Sume *
5121749Sume * Redistribution and use in source and binary forms, with or without
6121749Sume * modification, are permitted provided that the following conditions
7197139Shrs * are met:
8197139Shrs * 1. Redistributions of source code must retain the above copyright
9136224Smtm *    notice, this list of conditions and the following disclaimer.
10121749Sume * 2. Redistributions in binary form must reproduce the above copyright
11121749Sume *    notice, this list of conditions and the following disclaimer in the
12197697Shrs *    documentation and/or other materials provided with the distribution.
13121749Sume * 3. All advertising materials mentioning features or use of this software
14121749Sume *    must display the following acknowledgement:
15298514Slme *	This product includes software developed by the University of
16230099Sdougb *	California, Berkeley and its contributors.
17121749Sume * 4. Neither the name of the University nor the names of its contributors
18129994Sume *    may be used to endorse or promote products derived from this software
19129994Sume *    without specific prior written permission.
20129994Sume *
21129994Sume * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22129994Sume * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23212579Shrs * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24121749Sume * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25212579Shrs * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26212579Shrs * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27212574Shrs * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28250240Shrs * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29250240Shrs * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30129994Sume * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31129994Sume * SUCH DAMAGE.
32197697Shrs *
33197697Shrs *	@(#)proc.h	7.1 (Berkeley) 5/15/91
34250240Shrs */
35250240Shrs
36250240Shrs/*
37250240Shrs * Machine-dependent part of the proc structure for hp300.
38250240Shrs */
39250240Shrsstruct mdproc {
40250240Shrs	int	md_flags;		/* machine-dependent flags */
41250240Shrs#ifdef notyet
42250240Shrs	int	*p_regs;		/* registers on current frame */
43250240Shrs#endif
44250240Shrs};
45250240Shrs
46129994Sume/* md_flags */
47129994Sume#define	MDP_AST		0x0001	/* async trap pending */
48129994Sume