summaryrefslogtreecommitdiff
path: root/epoll.c
Commit message (Expand)AuthorAgeFilesLines
* Disable changelist for epoll by default because of Linux dup() bug; add an op...Nick Mathewson2010-11-221-15/+87
* Simplify the logic for choosing EPOLL_CTL_ADD vs EPOLL_CTL_MODNick Mathewson2010-10-241-16/+19
* Fix a nasty bug related to use of dup() with epoll on LinuxNick Mathewson2010-10-241-13/+19
* Fix a spurious-call bug on epoll.cNick Mathewson2010-09-301-1/+1
* Make debugging output for epoll backend more comprehensiveNick Mathewson2010-09-211-5/+14
* Remove the now-useless evsig_caught and evsig_processNick Mathewson2010-09-151-3/+0
* Move event-config.h to include/event2Nick Mathewson2010-08-061-1/+1
* Improve error message for failed epoll to make debugging easier.Nick Mathewson2010-07-291-10/+33
* Suppress a spurious EPERM warning in epoll.cNick Mathewson2010-07-081-1/+2
* Add evutil_tv_to_msec for safe conversion of timevals to milliseconds.Christopher Davis2010-03-311-9/+11
* more whitespace normalizationNick Mathewson2010-03-051-3/+3
* Update all our copyright notices to say "2010"Nick Mathewson2010-03-041-1/+1
* Minimize epoll_ctl calls by using changelistNick Mathewson2010-01-231-69/+152
* Introduced evutil_make_socket_closeonexec() to preserve fd flags for F_SETFD.Jardel Weyrich2009-12-291-10/+1
* Stop passing EVTHREAD_READ and EVTHREAD_WRITE to non-rw locks.Nick Mathewson2009-11-271-2/+2
* Prefer calloc(a,b) to malloc(a*b). via openbsd.Nick Mathewson2009-11-151-1/+1
* We do not work any more without an event-config.h; stop pretending that it is...Nick Mathewson2009-11-061-2/+0
* Remove compat/sys/_time.hNick Mathewson2009-11-031-2/+0
* Use EVUTIL_ASSERT() consistently instead of assert.Nick Mathewson2009-10-261-2/+1
* Add locking to event_base_loop.Nick Mathewson2009-10-211-0/+6
* Spelling fixes in comments and strings.Nick Mathewson2009-10-161-2/+2
* Fix the assert I added to epoll.c: spotted by Dmitry NovikovNick Mathewson2009-09-161-1/+1
* Make epoll use less RAM.Nick Mathewson2009-09-111-24/+30
* Update copyright statements to reflect the facts that:Nick Mathewson2009-01-271-2/+2
* Replace all use of config.h with event-config.h.Nick Mathewson2009-01-271-4/+4
* Move per-fd info from eventops into evmap. Not done for win32.c yet.Nick Mathewson2009-01-141-4/+7
* Rename four internal headers to follow the -internal.h convention.Nick Mathewson2009-01-131-3/+3
* deprecate the usage of signal_{add,del,set} and name it evsignal_{add,del,set...Niels Provos2008-12-231-5/+5
* Restructure the event backends so that they do not need to keep track of even...Niels Provos2008-12-231-146/+49
* constify structs; from Andrei NigmatulinNiels Provos2008-12-131-1/+1
* Add new functions to access backends by their features and to query the featu...Nick Mathewson2008-05-311-1/+2
* Patch from Valery Kholodkov: support for edge-triggered events with epoll and...Nick Mathewson2008-05-301-2/+4
* simplify handling of environment variables for disabling backends;Niels Provos2008-05-291-4/+0
* r15316@tombo: nickm | 2008-04-24 20:58:36 -0400Nick Mathewson2008-04-251-10/+10
* r15219@tombo: nickm | 2008-04-17 15:12:17 -0400Nick Mathewson2008-04-171-1/+2
* r19309@catbus: nickm | 2008-04-11 16:02:07 -0400Nick Mathewson2008-04-111-0/+14
* r19305@catbus: nickm | 2008-04-10 15:34:10 -0400Nick Mathewson2008-04-101-1/+2
* make event methods static so that they are not exported; from Andrei NigmatulinNiels Provos2008-03-291-10/+10
* r17185@catbus: nickm | 2007-12-16 14:33:40 -0500Nick Mathewson2007-12-161-1/+1
* remove obsoleted recalc codeNiels Provos2007-12-091-2/+0
* move EV_PERSIST handling out of the event backendsNiels Provos2007-11-271-6/+0
* r14939@tombo: nickm | 2007-11-25 11:59:26 -0500Nick Mathewson2007-11-251-10/+10
* provide event_reinit() to reinitialized an event_base after fork - necessary ...Niels Provos2007-11-251-1/+2
* revert r505; it introduced errors in epollNiels Provos2007-11-111-12/+25
* r16584@catbus: nickm | 2007-11-10 00:00:59 -0500Nick Mathewson2007-11-101-25/+12
* r14744@tombo: nickm | 2007-11-06 21:30:11 -0500Nick Mathewson2007-11-071-2/+2
* r16454@catbus: nickm | 2007-11-06 09:59:45 -0500Nick Mathewson2007-11-061-16/+13
* remove last vestiges of RBTREENiels Provos2007-11-031-1/+0
* make clock_monotonic work; do not use default timeout;Niels Provos2007-07-301-2/+4
* more the signal base into the event base; this removes global state and makes...Niels Provos2007-03-101-10/+12