| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2004-01-08 | Used to say "type=", but now says "size=" since that's what it's | atatat | |
| supposed to say. | |||
| 2004-01-05 | Homogenize usage messages: make the 'usage' word all lowercase, as this seems | jmmv | |
| to be the most common practice in our tree. | |||
| 2003-12-31 | Simplify Oo/Oc to Op, since it has only one simple short argument. | wiz | |
| 2003-12-30 | Update sysctl.8 man page to cover all the new stuff. | atatat | |
| 2003-12-04 | sysctlnametomib() is a private function for the moment. | atatat | |
| 2003-12-04 | New sysctl(8) binary. Performs auto-discovery and can add/remove | atatat | |
| nodes from the tree. Never needs to be recompiled again. | |||
| 2003-11-10 | Make per-protocol network input queue stats visible to userland via | jonathan | |
| sysctl. Add a protocol-independent sysctl handler to show the per-protocol "struct ifq' statistics. Add IP(v4) specific call to the handler. Other protocols can show their per-protocol input statistics by allocating a sysclt node and calling sysctl_ifq() with their own struct ifq *. As posted to tech-kern plus improvements/cleanup suggested by Andrew Brown. | |||
| 2003-10-15 | Slight option ordering change. | wiz | |
| 2003-09-27 | Forgot the date.... | dsl | |
| 2003-09-27 | Add kern.drivers and kern.root_partition to match recent kern_sysctl.c | dsl | |
| Add kern.root_device which was absent. | |||
| 2003-09-21 | Combine multiple single-letter options. | wiz | |
| 2003-09-20 | add -e flag to set the separator to '=' where the default is ' = '. | grant | |
| this allows sysctl output to fed back into itself. inspired by FreeBSD's sysctl(8). ok'd by atatat. | |||
| 2003-09-17 | put flags in a list with descriptions. add proper description of -w. | grant | |
| 2003-08-07 | Mention /etc/sysctl.conf. Bump date. Closes PR 22213. | wiz | |
| 2003-08-07 | Move UCB-licensed code from 4-clause to 3-clause licence. | agc | |
| Patches provided by Joel Baker in PR 22308, verified by myself. | |||
| 2003-07-04 | Bump date for last, and replace some \*[Lt]/\*[Gt] with .Aq. | wiz | |
| 2003-07-03 | Add somaxkva. | ragge | |
| 2003-06-17 | Remove the KERN_DRIVERS case handler (prototype code?). | simonb | |
| 2003-06-16 | Print hw.cnmagic as escaped hex bytes (unless -n given). | dsl | |
| Change 'special' to be a numeral not a bit, it isn't ever used as a bit and I can't see why it should ever be used that way. | |||
| 2003-05-31 | Avoid a strict-alias warning in gcc 3.3. | thorpej | |
| 2003-05-18 | simplify more | itojun | |
| 2003-05-18 | simplify by strlcpy/cat | itojun | |
| 2003-04-19 | add tcp.ident. | christos | |
| 2003-04-12 | add checkinterface | christos | |
| 2003-04-06 | Tweak behaviour introduced in rev 1.50; | lukem | |
| * by default, warning messages go to stderr * if -A or -a is used, send warning messages to stdout instead. The behaviour in 1.50 meant that somevar=`sysctl -n machdep.booted_kernel 2>/dev/null` could end up with $somevar="machdep.booted_kernel: the value is not available" rather than the more useful $somevar="". (This way, "sysctl -A | grep ..." is still useful.) | |||
| 2003-03-17 | Consistent tab usage. | wiz | |
| 2003-03-15 | Use "its" instead of "it's" where appropriate. | wiz | |
| From Soren Jacobsen in PR 20730. | |||
| 2003-03-07 | Quell formwat warning for LP64 for the diskinfo printf. | fvdl | |
| 2003-03-06 | hw.physpages -> hw.physmem64, hw.userpages -> hw.usermem64 | thorpej | |
| 2003-03-01 | Document net.inet.tcp.init_win_local. | thorpej | |
| 2003-02-27 | Document hw.physpages and hw.userpages. | thorpej | |
| 2003-02-02 | Add sysconf(3) knobs for recent additions. | kleink | |
| 2003-02-01 | Add several missing items, and be less rageous about memory locking. | kleink | |
| 2003-01-22 | display machdep.diskinfo for i386 and x86_84 | dsl | |
| (agreed by christos) | |||
| 2002-12-24 | On Darwin, mach_init is the system bootstrap process. It is responsible | manu | |
| for forking the traditional UNIX init(8) and it does the Mach port naming service. We need mach_init for the naming service, but unfortunately, it will only act as such if its PID is 1. We introduce a sysctl (emul.darwin.init_pid) to fool a given process into thinking its PID is 1. That way we can get mach_init into behaving as the name server. Typical use: /sbin/sysctl -w emul.darwin.init_pid=$$ ; exec /emul/darwin/sbin/mach_init | |||
| 2002-12-11 | Add kern.forkfsleep sysctl - set/get time (in miliseconds) for which | jdolecek | |
| process would be forced to sleep in fork() if it hits either global or user maxproc limit. Default is zero (no forced sleep). Maximum is 20 seconds. | |||
| 2002-12-11 | Add two sysctls: kern.labelsector and kern.labeloffset. | scw | |
| These are of use to userland code which previously depended on the hard-coded values of LABELSECTOR and LABELOFFSET to figure out the location of the disklabel for a particular platform. With the introduction of umbrella ports such as evbarm, evbmips, etc, the location of the disklabel may vary between kernels for the same MACHINE. This sysctl will allow userland programs to remain independent of the particular flavour of MACHINE in such cases. | |||
| 2002-11-30 | tweaks for fparseln(3) move from libutil to libc: | lukem | |
| - remove #include <util.h> if nothing else needed it - remove LDFLAGS+=-lutil if nothing else needed it | |||
| 2002-11-09 | Added sysctl to change all IRIX kernel values reported by uname and systeminfo: | manu | |
| OS name, hw name, kernel version, and so forth. | |||
| 2002-11-07 | Added two sysctl-able flags: proc.curproc.stopfork and proc.curproc.stopexec | manu | |
| that can be used to block a process after fork(2) or exec(2) calls. The new process is created in the SSTOP state and is never scheduled for running. This feature is designed so that it is esay to attach the process using gdb before it has done anything. It works also with sproc, kthread_create, clone... | |||
| 2002-11-03 | When printing out nodes of type "string", don't print anything if | simonb | |
| sysctl() reports that 0 bytes were returned. Reported by Matt Green with "sysctl hw.disknames" on a system with no disks. | |||
| 2002-10-03 | New sentence, new line. From Robert Elz. | wiz | |
| 2002-10-01 | Replace some \*[Lt]...\*[Gt] with .Aq ... | wiz | |
| 2002-08-19 | Use ${NETBSDSRCDIR}/some/path instead of ${.CURDIR}/../../some/path | lukem | |
| 2002-05-29 | document vfs.nfs.iothreads | msaitoh | |
| 2002-05-28 | document net.inet6.ip6.maxfrags | itojun | |
| 2002-05-19 | document net.key.* sysctl. provide sysctl MIB for controlling | itojun | |
| proposal payload on ACQUIRE message. sync w/kame | |||
| 2002-05-14 | rename: net.inet6.ip6.bindv6only -> net.inet6.ip6.v6only | itojun | |
| sync w/kame. | |||
| 2002-03-24 | Add -q flag, for use with -w and -f, which suppresses output after a set. | sommerfeld | |
| 2002-03-20 | remove debugging line. | christos | |
