155123Storek /* 255123Storek * Copyright (c) 1992 The Regents of the University of California. 355123Storek * 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 * 9*55501Sbostic * All advertising materials mentioning features or use of this software 10*55501Sbostic * must display the following acknowledgement: 11*55501Sbostic * This product includes software developed by the University of 12*55501Sbostic * California, Lawrence Berkeley Laboratories. 13*55501Sbostic * 1455123Storek * %sccs.include.redist.c% 1555123Storek * 16*55501Sbostic * @(#)proc.h 7.2 (Berkeley) 07/21/92 1755123Storek * 1855123Storek * from: $Header: proc.h,v 1.5 92/06/17 06:10:23 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