155123Storek /* 2*63320Sbostic * Copyright (c) 1992, 1993 3*63320Sbostic * The Regents of the University of California. All rights reserved. 455123Storek * 555123Storek * This software was developed by the Computer Systems Engineering group 655123Storek * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and 755123Storek * contributed to Berkeley. 855123Storek * 955501Sbostic * All advertising materials mentioning features or use of this software 1055501Sbostic * must display the following acknowledgement: 1155501Sbostic * This product includes software developed by the University of 1259210Storek * California, Lawrence Berkeley Laboratory. 1355501Sbostic * 1455123Storek * %sccs.include.redist.c% 1555123Storek * 16*63320Sbostic * @(#)proc.h 8.1 (Berkeley) 06/11/93 1755123Storek * 1859210Storek * from: $Header: proc.h,v 1.6 92/11/26 02:04:41 torek Exp $ (LBL) 1955123Storek */ 2055123Storek 2155123Storek /* 2255123Storek * Machine-dependent part of the proc structure for SPARC. 2355123Storek */ 2455123Storek struct mdproc { 2555123Storek struct trapframe *md_tf; /* trap/syscall registers */ 2655123Storek struct fpstate *md_fpstate; /* fpu state, if any; always resident */ 2755123Storek }; 28