date and time created 91/04/12 14:40:01 by bostic
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Sat, 13 Apr 1991 05:40:01 +0000 (21:40 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Sat, 13 Apr 1991 05:40:01 +0000 (21:40 -0800)
SCCS-vsn: usr.bin/f77/libF77/sigframe.h 5.1

usr/src/usr.bin/f77/libF77/sigframe.h [new file with mode: 0644]

diff --git a/usr/src/usr.bin/f77/libF77/sigframe.h b/usr/src/usr.bin/f77/libF77/sigframe.h
new file mode 100644 (file)
index 0000000..bdb6190
--- /dev/null
@@ -0,0 +1,14 @@
+/*
+ * Definition of signal handler frame.
+ */
+
+struct sigframe {
+       int     sf_signum;
+       int     sf_code;
+       struct  sigcontext *sf_scp;
+       int     (*sf_handler)();
+       int     r1;
+       int     r0;
+       struct  sigcontext *sf_scpcopy;
+}; 
+