Deleted Added
full compact
conf.h (222801) conf.h (223085)
1/*-
2 * Copyright (c) 1990, 1993
3 * The Regents of the University of California. All rights reserved.
4 * Copyright (c) 2000
5 * Poul-Henning Kamp. All rights reserved.
6 * (c) UNIX System Laboratories, Inc.
7 * All or some portions of this file are derived from material licensed
8 * to the University of California by American Telephone and Telegraph

--- 20 unchanged lines hidden (view full) ---

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)conf.h 8.5 (Berkeley) 1/9/95
1/*-
2 * Copyright (c) 1990, 1993
3 * The Regents of the University of California. All rights reserved.
4 * Copyright (c) 2000
5 * Poul-Henning Kamp. All rights reserved.
6 * (c) UNIX System Laboratories, Inc.
7 * All or some portions of this file are derived from material licensed
8 * to the University of California by American Telephone and Telegraph

--- 20 unchanged lines hidden (view full) ---

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)conf.h 8.5 (Berkeley) 1/9/95
37 * $FreeBSD: head/sys/sys/conf.h 222801 2011-06-07 01:28:12Z marcel $
37 * $FreeBSD: head/sys/sys/conf.h 223085 2011-06-14 16:29:43Z gibbs $
38 */
39
40#ifndef _SYS_CONF_H_
41#define _SYS_CONF_H_
42
43#ifdef _KERNEL
44#include <sys/eventhandler.h>
45#else

--- 229 unchanged lines hidden (view full) ---

275 const char *_fmt, ...) __printflike(8, 9);
276int make_dev_p(int _flags, struct cdev **_cdev, struct cdevsw *_devsw,
277 struct ucred *_cr, uid_t _uid, gid_t _gid, int _mode,
278 const char *_fmt, ...) __printflike(8, 9);
279struct cdev *make_dev_alias(struct cdev *_pdev, const char *_fmt, ...)
280 __printflike(2, 3);
281int make_dev_alias_p(int _flags, struct cdev **_cdev, struct cdev *_pdev,
282 const char *_fmt, ...) __printflike(4, 5);
38 */
39
40#ifndef _SYS_CONF_H_
41#define _SYS_CONF_H_
42
43#ifdef _KERNEL
44#include <sys/eventhandler.h>
45#else

--- 229 unchanged lines hidden (view full) ---

275 const char *_fmt, ...) __printflike(8, 9);
276int make_dev_p(int _flags, struct cdev **_cdev, struct cdevsw *_devsw,
277 struct ucred *_cr, uid_t _uid, gid_t _gid, int _mode,
278 const char *_fmt, ...) __printflike(8, 9);
279struct cdev *make_dev_alias(struct cdev *_pdev, const char *_fmt, ...)
280 __printflike(2, 3);
281int make_dev_alias_p(int _flags, struct cdev **_cdev, struct cdev *_pdev,
282 const char *_fmt, ...) __printflike(4, 5);
283int make_dev_physpath_alias(int _flags, struct cdev **_cdev,
284 struct cdev *_pdev, struct cdev *_old_alias,
285 const char *_physpath);
283void dev_lock(void);
284void dev_unlock(void);
285void setconf(void);
286
287#ifdef KLD_MODULE
288#define MAKEDEV_ETERNAL_KLD 0
289#else
290#define MAKEDEV_ETERNAL_KLD MAKEDEV_ETERNAL

--- 50 unchanged lines hidden ---
286void dev_lock(void);
287void dev_unlock(void);
288void setconf(void);
289
290#ifdef KLD_MODULE
291#define MAKEDEV_ETERNAL_KLD 0
292#else
293#define MAKEDEV_ETERNAL_KLD MAKEDEV_ETERNAL

--- 50 unchanged lines hidden ---