|
|
1.1 root 1: /*
2: * private data for unix file server;
3: * stored in Rfile.fs
4: */
5:
6: typedef struct {
7: int fd;
8: int flags;
9: char *name;
10: } Fsfile;
11:
12: #define CANTREAD 01
13: #define CANTWRITE 02
14: #define WONTREAD 04
15: #define WONTWRITE 010
16: #define DIDDIR 020 /* need to dircleanup on close */
17: #define NOSTAT 040 /* stat info invalid */
18:
19: #define fsp(f) ((Fsfile *)(f)->fs)
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.