|
|
coherent
/*
* This is the format of a
* disc buffer as managed by the
* user level cache manager.
*/
typedef struct DISCBUF
{
struct DISCBUF *db_fp; /* Link */
int db_refc; /* Reference count */
long db_block; /* Block */
int db_flag; /* Some flags */
char db_data[BUFSIZ]; /* Data block */
} DISCBUF;
#define DB_DIRT 01 /* Dirty buffer */
#define DB_OK 02 /* Valid buffer */
extern DISCBUF *dbread();
extern DISCBUF *dbgrab();
extern DISCBUF *dbzero();
extern FILE *dbfp;
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.