| plan 9 kernel history: overview | file list | diff list |
1999/0608/mpc/nocache.c (diff list | history)
| mpc/nocache.c on 1999/0608 | ||
| 1999/0608 | #include "u.h" #include "../port/lib.h" #include "mem.h" #include "dat.h" #include "fns.h" #include "../port/error.h" // No file caching void cinit(void) { } void copen(Chan *c) { print("copen called!\n"); USED(c); } int cread(Chan *c, uchar *buf, int len, vlong off) { USED(c, buf, len, off); return 0; } void cupdate(Chan *c, uchar *buf, int len, vlong off) { USED(c, buf, len, off); } void cwrite(Chan* c, uchar *buf, int len, vlong off) { USED(c, buf, len, off); } | |