summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_synch.c
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2000-09-14 20:15:16 +0000
committerjhb <jhb@FreeBSD.org>2000-09-14 20:15:16 +0000
commitebc05310cae248ce00d7073b614a7a7b26daf5be (patch)
treee0a07dc129d55e2ff53300a4d760b93fe1273d77 /sys/kern/kern_synch.c
parent094011d95c4db982956963b5bd9133d7ad4c6b32 (diff)
downloadFreeBSD-src-ebc05310cae248ce00d7073b614a7a7b26daf5be.zip
FreeBSD-src-ebc05310cae248ce00d7073b614a7a7b26daf5be.tar.gz
Remove the mtx_t, witness_t, and witness_blessed_t types. Instead, just
use struct mtx, struct witness, and struct witness_blessed. Requested by: bde
Diffstat (limited to 'sys/kern/kern_synch.c')
-rw-r--r--sys/kern/kern_synch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/kern_synch.c b/sys/kern/kern_synch.c
index cd41140..a3f1998 100644
--- a/sys/kern/kern_synch.c
+++ b/sys/kern/kern_synch.c
@@ -416,7 +416,7 @@ sleepinit(void)
int
msleep(ident, mtx, priority, wmesg, timo)
void *ident;
- mtx_t *mtx;
+ struct mtx *mtx;
int priority, timo;
const char *wmesg;
{
OpenPOWER on IntegriCloud