|
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 p
Length: 666 (0x29a) Types: TextFile Names: »port.h«
└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki └─⟦this⟧ »EUUGD11/euug-87hel/sec1/pdtar/port.h«
/* * Portability declarations for public domain tar. * * @(#)port.h 1.1 86/03/11 Public Domain by John Gilmore, 1986 */ /* * Everybody does wait() differently. There seem to be no definitions * for this in V7 (e.g. you are supposed to shift and mask things out * using constant shifts and masks.) So fuck 'em all -- my own non * standard but portable macros. Don't change to a "union wait" * based approach -- the ordering of the elements of the struct * depends on the byte-sex of the machine. Foo! */ #define TERM_SIGNAL(status) ((status) & 0x7F) #define TERM_COREDUMP(status) (((status) & 0x80) != 0) #define TERM_VALUE(status) ((status) >> 8)