--- libeio/Changes 2011/06/10 06:50:42 1.29 +++ libeio/Changes 2013/05/09 03:03:24 1.52 @@ -5,8 +5,15 @@ TODO: make mtouch/readdir maybe others cancellable in-request TODO: fadvise request +TODO: fdopendir/utimensat +TODO: maybe work around 3.996gb barrier in pread/pwrite as well, maybe readahead etc.? 1.0 + - fix a deadlock where a wakeup signal could be missed when + a timeout occured at the same time. - use nonstandard but maybe-working-on-bsd fork technique. + - use fewer time() syscalls when waiting for new requests. + - fix a path-memory-leak in readdir when using the wrappers + (reported by Thomas L. Shinnick). - support a max_idle value of 0. - support setting of idle timeout value (eio_set_idle_timeout). - readdir: correctly handle malloc failures. @@ -45,3 +52,26 @@ - work around a Linux (and likely FreeBSD and other kernels) bug where sendfile would not transfer all the requested bytes on large transfers, using a heuristic. + - use libecb, and apply lots of minor space optimisations. + - disable sendfile on darwin, broken as everything else. + - add realpath request and implementation. + - cancelled requests will still invoke their request callbacks. + - add fallocate. + - do not acquire any locks when forking. + - incorporated some mingw32 changes by traviscline. + - added syncfs support, using direct syscall. + - set thread name on linux (ps -L/Hcx, top, gdb). + - remove useless use of volatile variables. + - fix memory leak when reaping threads. + - use utime now uses nanosecond resolution on posix 2008 systems. + - allow taking advantage of posix 2008 xxxat functions and fdopendir + by implementing a working directory abstraction. + - make readahead emulation behave more like actual readahead by never failing. + - added EIO_LSEEK (untested). + - added EIO_FALLOC_FL_PUNCH_HOLE. + - wtf. etp_proc returned 0, and no compiler ever complained. + - remove pread/pwrite emulation, as the only system that lacked them + (cygwin) provides them for a while now. + - provide pread/pwrite implementations for win32. + - implement aio_realpath for windows. +