[Libsysio-commit] strided-io: libsysio/src rw.c
Brought to you by:
lward
|
From: Ruth K. <rk...@us...> - 2004-02-04 17:42:30
|
Update of /cvsroot/libsysio/libsysio/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23082 Modified Files: Tag: strided-io rw.c Log Message: type mismatch causing warnings on alpha Index: rw.c =================================================================== RCS file: /cvsroot/libsysio/libsysio/src/Attic/rw.c,v retrieving revision 1.1.2.7 retrieving revision 1.1.2.8 diff -u -w -b -B -p -r1.1.2.7 -r1.1.2.8 --- rw.c 2 Feb 2004 16:22:32 -0000 1.1.2.7 +++ rw.c 4 Feb 2004 17:40:02 -0000 1.1.2.8 @@ -81,7 +81,7 @@ * passing them in a structure. */ static int -_sysio_iiox(ssize_t (*f)(struct inode *, struct ioctx *), +_sysio_iiox(int (*f)(struct inode *, struct ioctx *), struct file *fil, const struct iovec *iov, size_t iov_count, @@ -195,7 +195,7 @@ _sysio_sum_iovec(const struct iovec *iov * Asynch IO from/to iovec from/to current file offset. */ static int -_sysio_iiov(ssize_t (*f)(struct inode *, struct ioctx *), +_sysio_iiov(int (*f)(struct inode *, struct ioctx *), struct file *fil, const struct iovec *iov, int count, @@ -421,7 +421,7 @@ sysio_sym_weak_alias(read, __libc_read) * Asynch IO between iovec and data at the given offset. */ static int -_sysio_ipiov(ssize_t (*f)(struct inode *, struct ioctx *), +_sysio_ipiov(int (*f)(struct inode *, struct ioctx *), struct file *fil, const struct iovec *iov, int count, |