/* * Offspring Control Block Definition * * INCLUDE CX.H PRIOR TO INCLUDING THIS FILE * * Bob Denny * 20-Oct-82 */ struct ocb { struct ocb *o_lnk; /* Link word */ char *o_mcrl; /* --> Command line */ struct tcb *o_ptcb; /* --> Parent task TCB */ address o_ast; /* --> Exit AST service routine */ word *o_esb; /* VA of ESB */ word o_stat[8]; /* Internal ESB */ };