For what its worth, sync up the type of ps_arg_cache_max (unsigned long)

with the sysctl type (signed long).
This commit is contained in:
Peter Wemm 2001-11-08 00:24:48 +00:00
parent 15d2f5f04f
commit c3699b5f63
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=86180

View File

@ -76,7 +76,7 @@ static u_long usrstack = USRSTACK;
SYSCTL_ULONG(_kern, KERN_USRSTACK, usrstack, CTLFLAG_RD, &usrstack, 0, "");
u_long ps_arg_cache_limit = PAGE_SIZE / 16;
SYSCTL_LONG(_kern, OID_AUTO, ps_arg_cache_limit, CTLFLAG_RW,
SYSCTL_ULONG(_kern, OID_AUTO, ps_arg_cache_limit, CTLFLAG_RW,
&ps_arg_cache_limit, 0, "");
int ps_argsopen = 1;