home *** CD-ROM | disk | FTP | other *** search
- /*
- * @(#) preadi.h 2.1 88/05/18
- *
- * Copyright (C) The Santa Cruz Operation, 1984, 1985, 1986, 1987.
- * Copyright (C) Microsoft Corporation, 1984, 1985, 1986, 1987.
- * This Module contains Proprietary Information of
- * The Santa Cruz Operation, Microsoft Corporation
- * and AT&T, and should be treated as Confidential.
- */
-
- /*
- * array for storing physical transfer requests
- */
- struct preq {
- daddr_t p_bnum;
- int p_bcount;
- };
-
- struct pmapnode {
- int p_bufindex;
- int p_bufcount;
- };
-
- #define MAXPREQ 10
- #define MAXPBUF 10
- #define ROK 0
- #define BADREQ -1
- #define RERROR -2
-