date and time created 87/05/19 16:13:31 by minshall
authorGregory Minshall <minshall@ucbvax.Berkeley.EDU>
Wed, 20 May 1987 07:13:31 +0000 (23:13 -0800)
committerGregory Minshall <minshall@ucbvax.Berkeley.EDU>
Wed, 20 May 1987 07:13:31 +0000 (23:13 -0800)
SCCS-vsn: usr.bin/tn3270/distribution/sys_dos/spint.h 1.1

usr/src/usr.bin/tn3270/distribution/sys_dos/spint.h [new file with mode: 0644]

diff --git a/usr/src/usr.bin/tn3270/distribution/sys_dos/spint.h b/usr/src/usr.bin/tn3270/distribution/sys_dos/spint.h
new file mode 100644 (file)
index 0000000..20559cb
--- /dev/null
@@ -0,0 +1,14 @@
+/*
+ * The 'spint' (spawn and interrupt) routines use this structure.
+ *
+ * Note that spint_asm.asm contains an Assembly language version of
+ * the following, so keep changes in synch!
+ */
+
+typedef struct {
+    union REGS         regs;
+    struct SREGS       sregs;
+    int                        int_no; /* Which interrupt to wait on */
+    int                        done;   /* Are we done, or just took an interrupt? */
+    int                        rc;     /* return code */
+} Spawn;