date and time created 87/05/19 16:13:31 by minshall
[unix-history] / usr / src / usr.bin / tn3270 / distribution / sys_dos / spint.h
CommitLineData
9aee8cdb
GM
1/*
2 * The 'spint' (spawn and interrupt) routines use this structure.
3 *
4 * Note that spint_asm.asm contains an Assembly language version of
5 * the following, so keep changes in synch!
6 */
7
8typedef struct {
9 union REGS regs;
10 struct SREGS sregs;
11 int int_no; /* Which interrupt to wait on */
12 int done; /* Are we done, or just took an interrupt? */
13 int rc; /* return code */
14} Spawn;