From: Bill Joy Date: Tue, 13 Mar 1990 07:47:53 +0000 (-0800) Subject: date and time created 90/03/12 15:47:53 by bill X-Git-Tag: BSD-4_3_Reno-Snapshot-Development~4158 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/6879f5b78a9664a8eeb36c51565ef7ca90276121 date and time created 90/03/12 15:47:53 by bill SCCS-vsn: sys/i386/include/frame.h 1.1 --- diff --git a/usr/src/sys/i386/include/frame.h b/usr/src/sys/i386/include/frame.h new file mode 100644 index 0000000000..e59f7fcf73 --- /dev/null +++ b/usr/src/sys/i386/include/frame.h @@ -0,0 +1,11 @@ +/* frame.h 1.1 86/01/05 */ + +/* + * Definition of the tahoe call frame. + */ +struct frame { + int fr_savpc; /* saved program counter */ + u_int fr_mask:16, /* register save mask */ + fr_removed:16; /* 4*number of arguments + 4 */ + int fr_savfp; /* saved frame pointer */ +};