|
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 - download
Length: 456 (0x1c8) Types: TextFile Names: »util.c«
└─⟦db229ac7e⟧ Bits:30007240 EUUGD20: SSBA 1.2 / AFW Benchmarks └─⟦this⟧ »EUUGD20/AFUU-ssba1.21/ssba1.21E/musbus/util.c« └─⟦this⟧ »EUUGD20/AFUU-ssba1.21/ssba1.21F/musbus/util.c«
#include "makework.h" #ifndef lint static char RCSid[] = "$Header: util.c,v 5.2 87/12/09 16:58:23 kenj Exp $"; #endif fatal(s) char *s; { int i; fprintf(stderr, s); fflush(stderr); perror("Reason?"); fflush(stderr); for (i = 0; i < nstream; i++) { if (work[i].pid > 0 && kill(work[i].pid, SIGKILL) != -1) { fprintf(stderr, "pid %d killed off\n", work[i].pid); fflush(stderr); } } exit_status = 4; return; }