[Libsysio-commit] cplant: libsysio/dev/stdfd stdfd.c
Brought to you by:
lward
From: Ruth K. <rk...@us...> - 2003-05-01 15:41:55
|
Update of /cvsroot/libsysio/libsysio/dev/stdfd In directory sc8-pr-cvs1:/tmp/cvs-serv17845 Modified Files: Tag: cplant stdfd.c Log Message: make calls to cplant libs existing functions Index: stdfd.c =================================================================== RCS file: /cvsroot/libsysio/libsysio/dev/stdfd/stdfd.c,v retrieving revision 1.2.2.1 retrieving revision 1.2.2.2 diff -u -w -b -B -p -r1.2.2.1 -r1.2.2.2 --- stdfd.c 28 Apr 2003 20:18:54 -0000 1.2.2.1 +++ stdfd.c 1 May 2003 15:41:50 -0000 1.2.2.2 @@ -59,8 +59,8 @@ #include "stdfd.h" #ifdef CPLANT_YOD -#define dowrite(f, b, n) rpc_write(f, b, n) -#define doread(f, b, n) rpc_read(f, b, n) +#define dowrite(f, b, n) write_yod(f, b, n) +#define doread(f, b, n) read_yod(f, b, n) #else #define dowrite(f, b, n) syscall(SYS_write, f, b, n) #define doread(f, b, n) syscall(SYS_read, f, b, n) |