diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 2005-02-10 12:02:37 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2005-02-10 12:02:37 +0000 |
commit | c711aea6cae4409bc957bf327fd5b23ada7fdf21 (patch) | |
tree | e482f2a3b11d8b31aaf943a15d6e90aa0b298dd1 /sys/kern/subr_turnstile.c | |
parent | d67c43b3a9bd14530efcd2b51905aeaf4a25ad87 (diff) | |
download | src-c711aea6cae4409bc957bf327fd5b23ada7fdf21.tar.gz src-c711aea6cae4409bc957bf327fd5b23ada7fdf21.zip |
Make a bunch of malloc types static.
Found by: src/tools/tools/kernxref
Notes
Notes:
svn path=/head/; revision=141616
Diffstat (limited to 'sys/kern/subr_turnstile.c')
-rw-r--r-- | sys/kern/subr_turnstile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/subr_turnstile.c b/sys/kern/subr_turnstile.c index 7eabe2101bfa..4686f78eff85 100644 --- a/sys/kern/subr_turnstile.c +++ b/sys/kern/subr_turnstile.c @@ -136,7 +136,7 @@ SYSCTL_UINT(_debug_turnstile, OID_AUTO, max_depth, CTLFLAG_RD, static struct mtx td_contested_lock; static struct turnstile_chain turnstile_chains[TC_TABLESIZE]; -MALLOC_DEFINE(M_TURNSTILE, "turnstiles", "turnstiles"); +static MALLOC_DEFINE(M_TURNSTILE, "turnstiles", "turnstiles"); /* * Prototypes for non-exported routines. |