|
|
1.1 ! root 1: /* (-lgl ! 2: * COHERENT Version 4.0 ! 3: * Copyright (c) 1982, 1992 by Mark Williams Company. ! 4: * All rights reserved. May not be copied without permission. ! 5: -lgl) */ ! 6: /* ! 7: * Disk free block. ! 8: */ ! 9: ! 10: #ifndef FBLK_H ! 11: #define FBLK_H FBLK_H ! 12: ! 13: #include <sys/types.h> ! 14: ! 15: /* ! 16: * Number of free blocks in free list. ! 17: */ ! 18: #define NICFREE 64 ! 19: ! 20: /* ! 21: * Free list block structure. ! 22: */ ! 23: /*#pragma align 2*/ ! 24: struct fblk { ! 25: short df_nfree; /* Number of free blocks */ ! 26: daddr_t df_free[NICFREE]; /* Free blocks */ ! 27: }; ! 28: /*#pragma align*/ ! 29: ! 30: #endif
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.