[Libsysio-commit] RedStorm: libsysio/drivers/native fs_native.c
Brought to you by:
lward
From: Lee W. <lw...@us...> - 2003-05-19 14:37:04
|
Update of /cvsroot/libsysio/libsysio/drivers/native In directory sc8-pr-cvs1:/tmp/cvs-serv4131/drivers/native Modified Files: Tag: RedStorm fs_native.c Log Message: Finish redstorm port to the point of compilation. This is very hard to get setup to build. Definately see the README. Index: fs_native.c =================================================================== RCS file: /cvsroot/libsysio/libsysio/drivers/native/fs_native.c,v retrieving revision 1.11.4.1 retrieving revision 1.11.4.2 diff -u -w -b -B -p -r1.11.4.1 -r1.11.4.2 --- fs_native.c 12 May 2003 11:48:45 -0000 1.11.4.1 +++ fs_native.c 19 May 2003 13:51:20 -0000 1.11.4.2 @@ -1249,7 +1249,9 @@ native_inop_datasync(struct inode *ino) #ifdef NATIVE_FDATASYNC return syscall(NATIVE_FDATASYNC, I2NI(ino)->ni_fd); #else +#if 0 #warning No fdatasync system call -- Using fsync instead! +#endif return syscall(SYS_fsync, I2NI(ino)->ni_fd); #endif } |