xref: /original-bsd/sys/sparc/include/proc.h (revision d990c837)
1 /*
2  * Copyright (c) 1992 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * This software was developed by the Computer Systems Engineering group
6  * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
7  * contributed to Berkeley.
8  *
9  * All advertising materials mentioning features or use of this software
10  * must display the following acknowledgement:
11  *	This product includes software developed by the University of
12  *	California, Lawrence Berkeley Laboratory.
13  *
14  * %sccs.include.redist.c%
15  *
16  *	@(#)proc.h	7.3 (Berkeley) 04/20/93
17  *
18  * from: $Header: proc.h,v 1.6 92/11/26 02:04:41 torek Exp $ (LBL)
19  */
20 
21 /*
22  * Machine-dependent part of the proc structure for SPARC.
23  */
24 struct mdproc {
25 	struct	trapframe *md_tf;	/* trap/syscall registers */
26 	struct	fpstate *md_fpstate;	/* fpu state, if any; always resident */
27 };
28