Garbage collect ghost sysctl.
commitaefc0c83985eb3387b4e629771713496e9508154
authorStathis Kamperis <beket@dragonflybsd.org>
Sat, 7 Nov 2009 23:08:47 +0000 (8 01:08 +0200)
committerAlexander Polakov <polachok@gmail.com>
Sun, 8 Nov 2009 19:54:20 +0000 (8 22:54 +0300)
tree3f7343842b0198086f20eb3fed5815cba437fbb3
parentfd8e9fe23d0978bd19324c0cbc0971297b5624bb
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