From 6879f5b78a9664a8eeb36c51565ef7ca90276121 Mon Sep 17 00:00:00 2001 From: Bill Joy Date: Mon, 12 Mar 1990 23:47:53 -0800 Subject: [PATCH] date and time created 90/03/12 15:47:53 by bill SCCS-vsn: sys/i386/include/frame.h 1.1 --- usr/src/sys/i386/include/frame.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 usr/src/sys/i386/include/frame.h 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 */ +}; -- 2.20.1