|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T m
Length: 798 (0x31e) Types: TextFile Names: »makework.h«
└─⟦db229ac7e⟧ Bits:30007240 EUUGD20: SSBA 1.2 / AFW Benchmarks └─⟦this⟧ »EUUGD20/AFUU-ssba1.21/ssba1.21E/musbus/makework.h« └─⟦this⟧ »EUUGD20/AFUU-ssba1.21/ssba1.21F/musbus/makework.h«
#include <stdio.h> #include "../install/signal.h" /* $Header: makework.h,v 1.4 87/06/24 08:33:56 kjmcdonell Beta $ */ #define MAXSTREAM 12 typedef struct st_stream { char *home; /* home dir for job stream */ char *cmd; /* name of command to run */ char **av; /* arguments to command */ char *buf; /* standard input buffer */ int blen; /* size of standard input buffer */ int xmit; /* # characters sent */ char *bp; /* std input buffer pointer */ char *tty; /* standard output (filename) */ int fd; /* stdin to command */ int pid; /* PID of stream command */ char *line; /* start of input line */ } stream; extern stream work[]; extern int nstream; /* number of concurrent streams to be * simulated by this process */ extern int exit_status; /* returned to parent */