svn commit: r246696 - head/sys/kern
Marius Strobl
marius at FreeBSD.org
Mon Feb 11 23:05:11 UTC 2013
Author: marius
Date: Mon Feb 11 23:05:10 2013
New Revision: 246696
URL: http://svnweb.freebsd.org/changeset/base/246696
Log:
Update comments to reflect r246689.
Modified:
head/sys/kern/kern_sysctl.c
Modified: head/sys/kern/kern_sysctl.c
==============================================================================
--- head/sys/kern/kern_sysctl.c Mon Feb 11 23:04:12 2013 (r246695)
+++ head/sys/kern/kern_sysctl.c Mon Feb 11 23:05:10 2013 (r246696)
@@ -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)
More information about the svn-src-head
mailing list