diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1999-02-25 17:36:54 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1999-02-25 17:36:54 +0000 |
commit | bfa1570fb32fb72af2920660f55dba1c0e5a2369 (patch) | |
tree | 8776fe20457b979a975d921722feee721485d911 /sys/arch/hppa | |
parent | 8929428872c9d5b2f359c965e6dfbb0ed44932bf (diff) |
flesh pcb out
Diffstat (limited to 'sys/arch/hppa')
-rw-r--r-- | sys/arch/hppa/include/pcb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa/include/pcb.h b/sys/arch/hppa/include/pcb.h index a850be869bc..e7aa5c43ac7 100644 --- a/sys/arch/hppa/include/pcb.h +++ b/sys/arch/hppa/include/pcb.h @@ -1,8 +1,8 @@ -/* $OpenBSD: pcb.h,v 1.1 1998/07/07 21:32:43 mickey Exp $ */ +/* $OpenBSD: pcb.h,v 1.2 1999/02/25 17:36:53 mickey Exp $ */ struct pcb { - int i; + struct trapframe pcb_tf; }; |