kern_mib.c (685dc743dc3b5645e34836464128e1c0558b404b) | kern_mib.c (e256f71389fbf0ef6cf8f547342d5f789e69f918) |
---|---|
1/*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright (c) 1982, 1986, 1989, 1993 5 * The Regents of the University of California. All rights reserved. 6 * 7 * This code is derived from software contributed to Berkeley by 8 * Mike Karels at Berkeley Software Design, Inc. --- 616 unchanged lines hidden (view full) --- 625#ifdef COMPAT_FREEBSD6 626FEATURE(compat_freebsd6, "Compatible with FreeBSD 6"); 627#endif 628 629#ifdef COMPAT_FREEBSD7 630FEATURE(compat_freebsd7, "Compatible with FreeBSD 7"); 631#endif 632 | 1/*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright (c) 1982, 1986, 1989, 1993 5 * The Regents of the University of California. All rights reserved. 6 * 7 * This code is derived from software contributed to Berkeley by 8 * Mike Karels at Berkeley Software Design, Inc. --- 616 unchanged lines hidden (view full) --- 625#ifdef COMPAT_FREEBSD6 626FEATURE(compat_freebsd6, "Compatible with FreeBSD 6"); 627#endif 628 629#ifdef COMPAT_FREEBSD7 630FEATURE(compat_freebsd7, "Compatible with FreeBSD 7"); 631#endif 632 |
633#ifdef COMPAT_FREEBSD8 634FEATURE(compat_freebsd8, "Compatible with FreeBSD 8"); 635#endif 636 637#ifdef COMPAT_FREEBSD9 638FEATURE(compat_freebsd9, "Compatible with FreeBSD 9"); 639#endif 640 641#ifdef COMPAT_FREEBSD10 642FEATURE(compat_freebsd10, "Compatible with FreeBSD 10"); 643#endif 644 645#ifdef COMPAT_FREEBSD11 646FEATURE(compat_freebsd11, "Compatible with FreeBSD 11"); 647#endif 648 649#ifdef COMPAT_FREEBSD12 650FEATURE(compat_freebsd12, "Compatible with FreeBSD 12"); 651#endif 652 653#ifdef COMPAT_FREEBSD13 654FEATURE(compat_freebsd13, "Compatible with FreeBSD 13"); 655#endif 656 657#ifdef COMPAT_FREEBSD14 658FEATURE(compat_freebsd14, "Compatible with FreeBSD 14"); 659#endif 660 |
|
633/* 634 * This is really cheating. These actually live in the libc, something 635 * which I'm not quite sure is a good idea anyway, but in order for 636 * getnext and friends to actually work, we define dummies here. 637 * 638 * XXXRW: These probably should be CTLFLAG_CAPRD. 639 */ 640SYSCTL_STRING(_user, USER_CS_PATH, cs_path, CTLFLAG_RD, --- 103 unchanged lines hidden --- | 661/* 662 * This is really cheating. These actually live in the libc, something 663 * which I'm not quite sure is a good idea anyway, but in order for 664 * getnext and friends to actually work, we define dummies here. 665 * 666 * XXXRW: These probably should be CTLFLAG_CAPRD. 667 */ 668SYSCTL_STRING(_user, USER_CS_PATH, cs_path, CTLFLAG_RD, --- 103 unchanged lines hidden --- |