From 579f738316c91efb2e8f8e54aaba07823707c507 Mon Sep 17 00:00:00 2001 From: Steve Passe Date: Sat, 30 Aug 1997 07:59:47 +0000 Subject: [PATCH] Moved the SIMPLE_LOCK stuff from machine/param.h to machine/lock.h. include it here for now. Reviewed by: Bruce Evans --- sys/sys/lock.h | 5 ++++- sys/sys/lockmgr.h | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/sys/sys/lock.h b/sys/sys/lock.h index 8807bb0f648..6d7544e226e 100644 --- a/sys/sys/lock.h +++ b/sys/sys/lock.h @@ -35,12 +35,15 @@ * SUCH DAMAGE. * * @(#)lock.h 8.12 (Berkeley) 5/19/95 - * $Id: lock.h,v 1.7 1997/08/04 19:11:26 fsmp Exp $ + * $Id: lock.h,v 1.8 1997/08/18 02:06:30 dyson Exp $ */ #ifndef _LOCK_H_ #define _LOCK_H_ + +#include + /* * The general lock structure. Provides for multiple shared locks, * upgrading from shared to exclusive, and sleeping until the lock diff --git a/sys/sys/lockmgr.h b/sys/sys/lockmgr.h index 8807bb0f648..6d7544e226e 100644 --- a/sys/sys/lockmgr.h +++ b/sys/sys/lockmgr.h @@ -35,12 +35,15 @@ * SUCH DAMAGE. * * @(#)lock.h 8.12 (Berkeley) 5/19/95 - * $Id: lock.h,v 1.7 1997/08/04 19:11:26 fsmp Exp $ + * $Id: lock.h,v 1.8 1997/08/18 02:06:30 dyson Exp $ */ #ifndef _LOCK_H_ #define _LOCK_H_ + +#include + /* * The general lock structure. Provides for multiple shared locks, * upgrading from shared to exclusive, and sleeping until the lock