xref: /csrg-svn/sys/tahoe/include/frame.h (revision 25680)
1*25680Ssam /*	frame.h	1.1	86/01/05	*/
2*25680Ssam 
3*25680Ssam /*
4*25680Ssam  * Definition of the tahoe call frame.
5*25680Ssam  */
6*25680Ssam struct frame {
7*25680Ssam 	int	fr_savpc;		/* saved program counter */
8*25680Ssam 	u_int	fr_mask:16,		/* register save mask */
9*25680Ssam 		fr_removed:16;		/* 4*number of arguments + 4 */
10*25680Ssam 	int	fr_savfp;		/* saved frame pointer */
11*25680Ssam };
12