Garbage collect ghost sysctl.
authorStathis Kamperis <beket@dragonflybsd.org>
Sat, 7 Nov 2009 23:08:47 +0000 (01:08 +0200)
committerStathis Kamperis <beket@dragonflybsd.org>
Sat, 7 Nov 2009 23:57:18 +0000 (01:57 +0200)
commitd6e5508dbd2fe371d2ab5de30e335ea3f3b0abdf
tree3f7343842b0198086f20eb3fed5815cba437fbb3
parent5623ae32853fcfb747f493ea6af0059a56fb9b56
Garbage collect ghost sysctl.

p1003_1b.mq_open_max sysctl:

1. Has never worked properly (displayed a wrong value).
2. Didn't allow for its value to be tuned.
3. Is non-standard, so no 3rd party should rely on it. And, thus, noone
   should be harmed by its removal.
   The canonical way to get the maximum open message queue descriptors
   per process is via the sysconf(3) interface.
4. Has now been replaced by kern.mqueue.mq_open_max sysctl which
   addresses 1. and 2.

A stub has been inserted in place of the old sysctl definitions, in order to
reduce unnecessary diffs due to renumbering. This patch does NOT introduce
p1003_1b.unused1.

Partially-discussed-with: swildner@
sys/kern/kern_posix4_mib.c
sys/sys/sysctl.h