Deleted Added
full compact
conf.h (110701) conf.h (110710)
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

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

33 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 * SUCH DAMAGE.
39 *
40 * @(#)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

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

33 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 * SUCH DAMAGE.
39 *
40 * @(#)conf.h 8.5 (Berkeley) 1/9/95
41 * $FreeBSD: head/sys/sys/conf.h 110701 2003-02-11 12:51:51Z phk $
41 * $FreeBSD: head/sys/sys/conf.h 110710 2003-02-11 14:57:34Z phk $
42 */
43
44#ifndef _SYS_CONF_H_
45#define _SYS_CONF_H_
46
47#ifdef _KERNEL
48#include <sys/eventhandler.h>
49

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

73 LIST_HEAD(, cdev) si_children;
74 LIST_ENTRY(cdev) si_siblings;
75 dev_t si_parent;
76 u_int si_inode;
77 char *si_name;
78 void *si_drv1, *si_drv2;
79 struct cdevsw *si_devsw;
80 int si_iosize_max; /* maximum I/O size (for physio &al) */
42 */
43
44#ifndef _SYS_CONF_H_
45#define _SYS_CONF_H_
46
47#ifdef _KERNEL
48#include <sys/eventhandler.h>
49

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

73 LIST_HEAD(, cdev) si_children;
74 LIST_ENTRY(cdev) si_siblings;
75 dev_t si_parent;
76 u_int si_inode;
77 char *si_name;
78 void *si_drv1, *si_drv2;
79 struct cdevsw *si_devsw;
80 int si_iosize_max; /* maximum I/O size (for physio &al) */
81 u_int si_stripesize;
82 u_int si_stripeoffset;
81 uid_t si_uid;
82 gid_t si_gid;
83 mode_t si_mode;
84 u_long si_usecount;
85 union {
86 struct {
87 struct tty *__sit_tty;
88 } __si_tty;

--- 278 unchanged lines hidden ---
83 uid_t si_uid;
84 gid_t si_gid;
85 mode_t si_mode;
86 u_long si_usecount;
87 union {
88 struct {
89 struct tty *__sit_tty;
90 } __si_tty;

--- 278 unchanged lines hidden ---