Re-entrancy protection.

This commit is contained in:
andrew 1993-06-27 04:50:12 +00:00
parent e495c42118
commit a9f16886f9
2 changed files with 12 additions and 2 deletions

View File

@ -34,9 +34,12 @@
* SUCH DAMAGE.
*
* from: @(#)pcb.h 5.10 (Berkeley) 5/12/91
* $Id: pcb.h,v 1.5 1993/06/02 04:28:37 cgd Exp $
* $Id: pcb.h,v 1.6 1993/06/27 04:50:12 andrew Exp $
*/
#ifndef _I386_PCB_H_
#define _I386_PCB_H_
/*
* Intel 386 process control block
*/
@ -77,3 +80,5 @@ struct pcb {
#ifdef KERNEL
struct pcb *curpcb; /* our current running pcb */
#endif
#endif /* _I386_PCB_H_ */

View File

@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)pte.h 5.5 (Berkeley) 5/9/91
* $Id: pte.h,v 1.2 1993/05/22 08:00:34 cgd Exp $
* $Id: pte.h,v 1.3 1993/06/27 04:50:14 andrew Exp $
*/
/*
@ -48,6 +48,9 @@
* structure used in page clustering.
*/
#ifndef _I386_PTE_H_
#define _I386_PTE_H_
#ifndef LOCORE
struct pde
{
@ -135,3 +138,5 @@ unsigned int
extern struct pte *Sysmap;
#endif
#endif
#endif /* _I386_PTE_H_ */