diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2000-09-14 20:15:16 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2000-09-14 20:15:16 +0000 |
| commit | 606f8eb27a05fb8a0a521e5bdd9fbceb79d317f9 (patch) | |
| tree | b45029c09992dfe5f1de5869ef9c49176e3d1c83 /sys/dev/random | |
| parent | 6f451c99b37388fddd27da5e15cc1bc3a681b8b1 (diff) | |
Notes
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 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; |
