X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/blobdiff_plain/ad7871609881e73855d0b04da49b486cd93efca7..ed554bc5e4201344d7eaad78263566e79428759c:/usr/src/sys/sys/conf.h diff --git a/usr/src/sys/sys/conf.h b/usr/src/sys/sys/conf.h index a14f1665d7..58cb6fa833 100644 --- a/usr/src/sys/sys/conf.h +++ b/usr/src/sys/sys/conf.h @@ -1,6 +1,11 @@ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. + * (c) UNIX System Laboratories, Inc. + * All or some portions of this file are derived from material licensed + * to the University of California by American Telephone and Telegraph + * Co. or Unix System Laboratories, Inc. and are reproduced herein with + * the permission of UNIX System Laboratories, Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -30,7 +35,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)conf.h 8.1 (Berkeley) 6/4/93 + * @(#)conf.h 8.3 (Berkeley) 1/21/94 */ /* @@ -105,10 +110,13 @@ extern struct linesw linesw[]; struct swdevt { dev_t sw_dev; - int sw_freed; + int sw_flags; int sw_nblks; struct vnode *sw_vp; }; +#define SW_FREED 0x01 +#define SW_SEQUENTIAL 0x02 +#define sw_freed sw_flags /* XXX compat */ #ifdef KERNEL extern struct swdevt swdevt[];