diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-11-18 22:49:44 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-11-18 22:49:44 +0000 |
commit | 93b36526335612f21cd26108ef85345caae50e9e (patch) | |
tree | ce82ad3e3c3e94e68f080567b1caa4151d96a270 /sys/arch/m88k/include | |
parent | 5fc66cc773d89e98cff2ba9fcef664937d235be0 (diff) |
Stop saving and restoring the current ipl in the pcb when switching processes,
since we know we are at splsched().
Diffstat (limited to 'sys/arch/m88k/include')
-rw-r--r-- | sys/arch/m88k/include/pcb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/m88k/include/pcb.h b/sys/arch/m88k/include/pcb.h index 2ebb31accf0..e12b14cea62 100644 --- a/sys/arch/m88k/include/pcb.h +++ b/sys/arch/m88k/include/pcb.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pcb.h,v 1.2 2005/12/03 14:30:05 miod Exp $ */ +/* $OpenBSD: pcb.h,v 1.3 2006/11/18 22:49:40 miod Exp $ */ /* * Copyright (c) 1996 Nivas Madhur * Mach Operating System @@ -49,7 +49,7 @@ struct m88100_pcb { unsigned pcb_pc; /* address to return */ - unsigned pcb_ipl; + unsigned :32; unsigned pcb_r14; unsigned pcb_r15; unsigned pcb_r16; |