From 606f8eb27a05fb8a0a521e5bdd9fbceb79d317f9 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Thu, 14 Sep 2000 20:15:16 +0000 Subject: 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 --- sys/dev/random/yarrow.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/dev/random') diff --git a/sys/dev/random/yarrow.c b/sys/dev/random/yarrow.c index 76ae515974d21..fe839ee35986c 100644 --- a/sys/dev/random/yarrow.c +++ b/sys/dev/random/yarrow.c @@ -79,10 +79,10 @@ struct harvest { }; /* The reseed thread mutex */ -static mtx_t random_reseed_mtx; +static struct mtx random_reseed_mtx; /* The entropy harvest mutex */ -static mtx_t random_harvest_mtx; +static struct mtx random_harvest_mtx; /* <0 until the kthread starts, 0 for running */ static int random_kthread_status = -1; -- cgit v1.3