summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorriastradh <riastradh@NetBSD.org>2015-04-14 13:12:33 +0000
committerriastradh <riastradh@NetBSD.org>2015-04-14 13:12:33 +0000
commit2b850ff8a97aa77bde0c2e7e3c2f6eabb6d2f6f5 (patch)
tree0aeee1628b0ba2a21d5ea2e60d1a5a0d1a0aa71d /sys/dev
parent96ede3be221d4cbb7580adcb7bb50defa5932873 (diff)
Make various things now private to kern_rndq.c static.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/rnd_private.h22
1 files changed, 1 insertions, 21 deletions
diff --git a/sys/dev/rnd_private.h b/sys/dev/rnd_private.h
index 9a900194625..cf45846beed 100644
--- a/sys/dev/rnd_private.h
+++ b/sys/dev/rnd_private.h
@@ -1,4 +1,4 @@
-/* $NetBSD: rnd_private.h,v 1.9 2015/04/14 13:03:37 riastradh Exp $ */
+/* $NetBSD: rnd_private.h,v 1.10 2015/04/14 13:12:33 riastradh Exp $ */
/*-
* Copyright (c) 1997 The NetBSD Foundation, Inc.
@@ -58,7 +58,6 @@
bool rnd_extract(void *, size_t);
bool rnd_tryextract(void *, size_t);
void rnd_getmore(size_t);
-void rnd_wakeup_readers(void);
/*
* Flag indicating rnd_init has run.
@@ -66,25 +65,6 @@ void rnd_wakeup_readers(void);
extern int rnd_ready;
/*
- * Bootloader-supplied entropy. Use only in tests against NULL to
- * determine whether the bootloader supplied entropy.
- */
-extern rndsave_t *boot_rsp;
-
-/*
- * List of rndsources.
- */
-LIST_HEAD(rndsource_head, krndsource);
-
-/*
- * Global entropy pool state. Access to everything here is serialized
- * by rndpool_mtx.
- */
-extern kmutex_t rndpool_mtx;
-extern rndpool_t rnd_pool;
-extern struct rndsource_head rnd_sources;
-
-/*
* Debugging flags.
*/
#ifdef RND_DEBUG