xref: /csrg-svn/sys/tahoe/include/frame.h (revision 49429)
1*49429Sbostic /*-
2*49429Sbostic  * Copyright (c) 1991 The Regents of the University of California.
3*49429Sbostic  * All rights reserved.
4*49429Sbostic  *
5*49429Sbostic  * This code is derived from software contributed to Berkeley by
6*49429Sbostic  * Computer Consoles Inc.
7*49429Sbostic  *
8*49429Sbostic  * %sccs.include.redist.c%
9*49429Sbostic  *
10*49429Sbostic  *	@(#)frame.h	7.2 (Berkeley) 05/08/91
1134407Skarels  */
1225680Ssam 
1325680Ssam /*
1425680Ssam  * Definition of the tahoe call frame.
1525680Ssam  */
1625680Ssam struct frame {
1725680Ssam 	int	fr_savpc;		/* saved program counter */
1825680Ssam 	u_int	fr_mask:16,		/* register save mask */
1925680Ssam 		fr_removed:16;		/* 4*number of arguments + 4 */
2025680Ssam 	int	fr_savfp;		/* saved frame pointer */
2125680Ssam };
22