pass flags from device close to l_close
[unix-history] / usr / src / sys / tahoe / include / frame.h
CommitLineData
05e3da35
KB
1/*-
2 * Copyright (c) 1991 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Computer Consoles Inc.
7 *
8 * %sccs.include.redist.c%
9 *
10 * @(#)frame.h 7.2 (Berkeley) %G%
430f81c3 11 */
7719b6b8
SL
12
13/*
14 * Definition of the tahoe call frame.
15 */
16struct frame {
17 int fr_savpc; /* saved program counter */
18 u_int fr_mask:16, /* register save mask */
19 fr_removed:16; /* 4*number of arguments + 4 */
20 int fr_savfp; /* saved frame pointer */
21};