Use a shorter and less redundant name for the sysctl tree lock.

This commit is contained in:
John Baldwin 2003-03-11 20:01:51 +00:00
parent c06394f53f
commit 740190593a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=112107

View File

@ -68,7 +68,7 @@ static struct sx sysctllock;
#define SYSCTL_LOCK() sx_xlock(&sysctllock)
#define SYSCTL_UNLOCK() sx_xunlock(&sysctllock)
#define SYSCTL_INIT() sx_init(&sysctllock, "sysctl sysctllock")
#define SYSCTL_INIT() sx_init(&sysctllock, "sysctl lock")
static int sysctl_root(SYSCTL_HANDLER_ARGS);