Added used include of <sys/mutex.h>. The SMP case was broken by

incompletely converting simplelocks to mutexes (COM_LOCK() is supposed
to hide the SMP locking internals, but it now depends on mutex interfaces
being visible).
This commit is contained in:
Bruce Evans 2001-01-30 17:05:58 +00:00
parent 198e399f86
commit a89bda90b1
3 changed files with 3 additions and 0 deletions

View File

@ -78,6 +78,7 @@
#include <sys/ipl.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <sys/mutex.h>
#include <sys/syslog.h>
#include <machine/lock.h>
#include <machine/psl.h>

View File

@ -78,6 +78,7 @@
#include <sys/ipl.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <sys/mutex.h>
#include <sys/syslog.h>
#include <machine/lock.h>
#include <machine/psl.h>

View File

@ -78,6 +78,7 @@
#include <sys/ipl.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <sys/mutex.h>
#include <sys/syslog.h>
#include <machine/lock.h>
#include <machine/psl.h>