DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T m

⟦7bfe6a388⟧ TextFile

    Length: 798 (0x31e)
    Types: TextFile
    Names: »makework.h«

Derivation

└─⟦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« 

TextFile

#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 */