I want some of them callbacks!
Posted Oct 31, 2002 13:24 UTC (Thu) by
IkeTo (subscriber, #2122)
In reply to:
I want some of them callbacks! by zooko
Parent article:
sys_epoll - making poll fast
Hmm... that seems to be as difficult to use as signals. The function that you want to use is never in the list of async signal-safe functions, and you application will always have race condition using signals unless your application uses the call in a very limited way: your main application must do basically nothing, and your application must block basically every signal (and wait for signals using sigwait() or sigsuspend()). That means... you'll have to create system calls similar to those to deal with signals, and then to setup a huge size set for suspending file descriptor callbacks. Not to mention that pushing some code to the user is not something that a kernel developers would like to do unless absolutely needed. Doesn't seem to be exactly exciting for this type of optimization which is constant-time anyway.
(
Log in to post comments)