xref: /csrg-svn/sys/pmax/include/proc.h (revision 52131)
1*52131Smckusick /*
2*52131Smckusick  * Copyright (c) 1992 Regents of the University of California.
3*52131Smckusick  * All rights reserved.
4*52131Smckusick  *
5*52131Smckusick  * This code is derived from software contributed to Berkeley by
6*52131Smckusick  * Ralph Campbell.
7*52131Smckusick  *
8*52131Smckusick  * %sccs.include.redist.c%
9*52131Smckusick  *
10*52131Smckusick  *	@(#)proc.h	7.1 (Berkeley) 01/07/92
11*52131Smckusick  */
12*52131Smckusick 
13*52131Smckusick /*
14*52131Smckusick  * Machine-dependent part of the proc structure for DEC Station.
15*52131Smckusick  */
16*52131Smckusick struct mdproc {
17*52131Smckusick 	int	md_flags;		/* machine-dependent flags */
18*52131Smckusick 	int	md_upte[UPAGES];	/* ptes for mapping u page */
19*52131Smckusick };
20*52131Smckusick 
21*52131Smckusick /* md_flags */
22*52131Smckusick #define	MDP_FPUSED	0x0001	/* floating point coprocessor used */
23*52131Smckusick #define	MDP_ULTRIX	0x0002	/* ULTRIX process (ULTRIXCOMPAT) */
24