Document the need to use deferred cancellation with specific cancellation points.

git-svn-id: svn://svn.code.sf.net/p/libkqueue/code/trunk@540 fb4e3144-bc1c-4b72-a658-5bcd248dd7f7
This commit is contained in:
mheily 2012-04-20 18:18:30 +00:00
parent 25a23721b5
commit 0e25c817d0

6
BUGS
View File

@ -45,3 +45,9 @@
src/windows/read.c: return (-1); /* STUB */
src/windows/timer.c: return (0); /* STUB */
* kqueue() should defer thread cancellation until the end.
* kevent() should defer thread cancellation and call pthread_testcancel()
before and after the call to kevent_wait(). This may require changing the
way that EINTR is handled, to make sure that the EINTR is propagated up
the call stack to kevent().