Deleted Added
full compact
conf.h (38449) conf.h (38862)
1/*-
2 * Copyright (c) 1990, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.

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

31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * @(#)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 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.

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

31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * @(#)conf.h 8.5 (Berkeley) 1/9/95
39 * $Id: conf.h,v 1.43 1998/07/04 22:30:26 julian Exp $
39 * $Id: conf.h,v 1.44 1998/08/20 06:10:42 bde Exp $
40 */
41
42#ifndef _SYS_CONF_H_
43#define _SYS_CONF_H_
44
45/*
46 * Definitions of device driver entry switches
47 */

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

88#define D_TYPEMASK 0xffff
89
90/*
91 * Flags for d_flags.
92 */
93#define D_NOCLUSTERR 0x10000 /* disables cluter read */
94#define D_NOCLUSTERW 0x20000 /* disables cluster write */
95#define D_NOCLUSTERRW (D_NOCLUSTERR | D_NOCLUSTERW)
40 */
41
42#ifndef _SYS_CONF_H_
43#define _SYS_CONF_H_
44
45/*
46 * Definitions of device driver entry switches
47 */

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

88#define D_TYPEMASK 0xffff
89
90/*
91 * Flags for d_flags.
92 */
93#define D_NOCLUSTERR 0x10000 /* disables cluter read */
94#define D_NOCLUSTERW 0x20000 /* disables cluster write */
95#define D_NOCLUSTERRW (D_NOCLUSTERR | D_NOCLUSTERW)
96#define D_CANFREE 0x40000 /* can free blocks */
96
97
98/*
99 * Character device switch table
100 */
101struct cdevsw {
102 d_open_t *d_open;
103 d_close_t *d_close;

--- 155 unchanged lines hidden ---
97
98
99/*
100 * Character device switch table
101 */
102struct cdevsw {
103 d_open_t *d_open;
104 d_close_t *d_close;

--- 155 unchanged lines hidden ---