diff options
author | jhb <jhb@FreeBSD.org> | 2000-09-14 20:15:16 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2000-09-14 20:15:16 +0000 |
commit | ebc05310cae248ce00d7073b614a7a7b26daf5be (patch) | |
tree | e0a07dc129d55e2ff53300a4d760b93fe1273d77 /sys/dev/random | |
parent | 094011d95c4db982956963b5bd9133d7ad4c6b32 (diff) | |
download | FreeBSD-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/dev/random')
-rw-r--r-- | sys/dev/random/yarrow.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/random/yarrow.c b/sys/dev/random/yarrow.c index 76ae515..fe839ee 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; |