Deleted Added
full compact
conf.h (2165) conf.h (3438)
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.3 (Berkeley) 1/21/94
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.3 (Berkeley) 1/21/94
39 * $Id: conf.h,v 1.2 1994/08/02 07:52:44 davidg Exp $
39 * $Id: conf.h,v 1.3 1994/08/21 04:41:36 paul Exp $
40 */
41
42#ifndef _SYS_CONF_H_
43#define _SYS_CONF_H_
44
45/*
46 * Definitions of device driver entry switches
47 */

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

119 struct vnode *sw_vp;
120};
121#define SW_FREED 0x01
122#define SW_SEQUENTIAL 0x02
123#define sw_freed sw_flags /* XXX compat */
124
125#ifdef KERNEL
126extern struct swdevt swdevt[];
40 */
41
42#ifndef _SYS_CONF_H_
43#define _SYS_CONF_H_
44
45/*
46 * Definitions of device driver entry switches
47 */

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

119 struct vnode *sw_vp;
120};
121#define SW_FREED 0x01
122#define SW_SEQUENTIAL 0x02
123#define sw_freed sw_flags /* XXX compat */
124
125#ifdef KERNEL
126extern struct swdevt swdevt[];
127
128int iskmemdev __P((dev_t));
129int iszerodev __P((dev_t));
130int isdisk __P((dev_t, int));
131int chrtoblk __P((dev_t));
127#endif
128
129#endif
132#endif
133
134#endif