xref: /freebsd/lib/libopenbsd/sys/sysctl.h (revision b3e7694832e81d7a904a10f525f8797b753bf0d3)
1*677640a2SCraig Rodrigues /*-
2*677640a2SCraig Rodrigues  * Copyright (c) 2015 Craig Rodrigues
3*677640a2SCraig Rodrigues  * All rights reserved.
4*677640a2SCraig Rodrigues  *
5*677640a2SCraig Rodrigues  * Redistribution and use in source and binary forms, with or without
6*677640a2SCraig Rodrigues  * modification, are permitted provided that the following conditions
7*677640a2SCraig Rodrigues  * are met:
8*677640a2SCraig Rodrigues  * 1. Redistributions of source code must retain the above copyright
9*677640a2SCraig Rodrigues  *    notice, this list of conditions and the following disclaimer.
10*677640a2SCraig Rodrigues  * 2. Redistributions in binary form must reproduce the above copyright
11*677640a2SCraig Rodrigues  *    notice, this list of conditions and the following disclaimer in the
12*677640a2SCraig Rodrigues  *    documentation and/or other materials provided with the distribution.
13*677640a2SCraig Rodrigues  *
14*677640a2SCraig Rodrigues  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15*677640a2SCraig Rodrigues  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16*677640a2SCraig Rodrigues  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17*677640a2SCraig Rodrigues  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18*677640a2SCraig Rodrigues  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19*677640a2SCraig Rodrigues  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20*677640a2SCraig Rodrigues  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21*677640a2SCraig Rodrigues  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22*677640a2SCraig Rodrigues  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23*677640a2SCraig Rodrigues  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24*677640a2SCraig Rodrigues  * SUCH DAMAGE.
25*677640a2SCraig Rodrigues  */
26*677640a2SCraig Rodrigues 
27*677640a2SCraig Rodrigues #ifndef _LIBOPENBSD_SYS_SYSCTL_H_
28*677640a2SCraig Rodrigues #define _LIBOPENBSD_SYS_SYSCTL_H_
29*677640a2SCraig Rodrigues 
30*677640a2SCraig Rodrigues #include_next <sys/sysctl.h>
31*677640a2SCraig Rodrigues 
32*677640a2SCraig Rodrigues #ifndef KERN_PROC_NFDS
33*677640a2SCraig Rodrigues #define	KERN_PROC_NFDS		43	/* number of open file descriptors */
34*677640a2SCraig Rodrigues #endif
35*677640a2SCraig Rodrigues 
36*677640a2SCraig Rodrigues #endif /* _LIBOPENBSD_SYS_SYSCTL_H_ */
37