From 27d6f70455f2fff6d47238bb32c66e6b551ead7b Mon Sep 17 00:00:00 2001 From: marius Date: Mon, 11 Feb 2013 23:05:10 +0000 Subject: Update comments to reflect r246689. --- sys/kern/kern_sysctl.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/sys/kern/kern_sysctl.c b/sys/kern/kern_sysctl.c index 521714c..33296d3 100644 --- a/sys/kern/kern_sysctl.c +++ b/sys/kern/kern_sysctl.c @@ -1036,7 +1036,10 @@ sysctl_msec_to_ticks(SYSCTL_HANDLER_ARGS) /* - * Handle a long, signed or unsigned. arg1 points to it. + * Handle a long, signed or unsigned. + * Two cases: + * a variable: point arg1 at it. + * a constant: pass it in arg2. */ int @@ -1080,7 +1083,10 @@ sysctl_handle_long(SYSCTL_HANDLER_ARGS) } /* - * Handle a 64 bit int, signed or unsigned. arg1 points to it. + * Handle a 64 bit int, signed or unsigned. + * Two cases: + * a variable: point arg1 at it. + * a constant: pass it in arg2. */ int sysctl_handle_64(SYSCTL_HANDLER_ARGS) -- cgit v1.1