/* * Copyright (c) 1988 University of Utah. * Copyright (c) 1992 The Regents of the University of California. * All rights reserved. * * This code is derived from software contributed to Berkeley by * the Systems Programming Group of the University of Utah Computer * Science Department and Ralph Campbell. * * %sccs.include.redist.c% * * from: Utah $Hdr: pcb.h 1.13 89/04/23$ * * @(#)pcb.h 7.1 (Berkeley) 01/07/92 */ /* * PMAX process control block */ struct pcb { int pcb_regs[69]; /* saved CPU and floating point registers */ label_t pcb_context; /* kernel context for resume */ int pcb_onfault; /* for copyin/copyout faults */ };