plan 9 kernel history: overview | file list | diff list

1999/0608/mpc/nocache.c (diff list | history)

1999/0608/sys/src/9/mpc/nocache.c:15,212000/0516/sys/src/9/mpc/nocache.c:15,20 (short | long)
1999/0608    
void 
copen(Chan *c) 
{ 
print("copen called!\n"); 
	USED(c); 
} 
 
2000/0516/sys/src/9/mpc/nocache.c:1,382001/0527/sys/src/9/mpc/nocache.c:0 (short | long)
Deleted.
rsc Mon Mar 7 10:28:45 2005
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) 
{ 
	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); 
} 


source code copyright © 1990-2005 Lucent Technologies; see license
Plan 9 distribution
comments to russ cox (rsc@swtch.com)