[Libsysio-commit] HEAD: libsysio/drivers/incore fs_incore.c
Brought to you by:
lward
From: Lee W. <lw...@us...> - 2003-10-17 21:30:33
|
Update of /cvsroot/libsysio/libsysio/drivers/incore In directory sc8-pr-cvs1:/tmp/cvs-serv10931/drivers/incore Modified Files: fs_incore.c Log Message: Added a done bit to the IO context record to *positively* signal completion. Also, added a driver private pointer to the dsame record for handy use. Index: fs_incore.c =================================================================== RCS file: /cvsroot/libsysio/libsysio/drivers/incore/fs_incore.c,v retrieving revision 1.10 retrieving revision 1.11 diff -u -w -b -B -p -r1.10 -r1.11 --- fs_incore.c 15 Oct 2003 20:08:52 -0000 1.10 +++ fs_incore.c 17 Oct 2003 21:30:29 -0000 1.11 @@ -1502,6 +1502,8 @@ incore_doio(ssize_t (*f)(struct incore_i ioctx->ioctx_errno = -cc; } + ioctx->ioctx_done = 1; + return 0; } |