--- src/sys/sys/sysctl.h 2004/05/26 14:12:34 1.11 +++ src/sys/sys/sysctl.h 2004/11/09 17:52:45 1.12 @@ -341,8 +341,9 @@ TAILQ_HEAD(sysctl_ctx_list, sysctl_ctx_e #define KERN_PS_STRINGS 32 /* int: address of PS_STRINGS */ #define KERN_USRSTACK 33 /* int: address of USRSTACK */ #define KERN_LOGSIGEXIT 34 /* int: do we log sigexit procs? */ -#define KERN_MAXID 35 /* number of valid kern ids */ +#define KERN_IOV_MAX 35 /* int: value of UIO_MAXIOV */ #define KERN_MAXPOSIXLOCKSPERUID 36 /* int: max POSIX locks per uid */ +#define KERN_MAXID 37 /* number of valid kern ids */ #define CTL_KERN_NAMES { \ { 0, 0 }, \ @@ -381,6 +382,7 @@ TAILQ_HEAD(sysctl_ctx_list, sysctl_ctx_e { "ps_strings", CTLTYPE_INT }, \ { "usrstack", CTLTYPE_INT }, \ { "logsigexit", CTLTYPE_INT }, \ + { "iov_max", CTLTYPE_INT }, \ } /*