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 | |
| parent | 6f451c99b37388fddd27da5e15cc1bc3a681b8b1 (diff) | |
Notes
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/random/yarrow.c | 4 | ||||
| -rw-r--r-- | sys/dev/randomdev/yarrow.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/random/yarrow.c b/sys/dev/random/yarrow.c index 76ae515974d2..fe839ee35986 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; diff --git a/sys/dev/randomdev/yarrow.c b/sys/dev/randomdev/yarrow.c index 76ae515974d2..fe839ee35986 100644 --- a/sys/dev/randomdev/yarrow.c +++ b/sys/dev/randomdev/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; |
