summaryrefslogtreecommitdiff
path: root/kqueue.c
Commit message (Expand)AuthorAgeFilesLines
* Prefer calloc(a,b) to malloc(a*b). via openbsd.Nick Mathewson2009-11-151-3/+3
* We do not work any more without an event-config.h; stop pretending that it is...Nick Mathewson2009-11-061-2/+0
* Fix kqueue.c build on GNU/kFreeBSD systems.Nick Mathewson2009-11-061-0/+2
* Remove compat/sys/_time.hNick Mathewson2009-11-031-2/+0
* Remove some duplicate code in kqueue.c and fix a small memory leak.Nick Mathewson2009-10-301-10/+15
* Refactor kq_init error handling.Nick Mathewson2009-10-271-24/+19
* Use EVUTIL_ASSERT() consistently instead of assert.Nick Mathewson2009-10-261-3/+2
* OSX compilation issuesNick Mathewson2009-10-211-5/+7
* Add locking to event_base_loop.Nick Mathewson2009-10-211-26/+58
* Spelling fixes in comments and strings.Nick Mathewson2009-10-161-4/+4
* 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
* Remove all trailing whitespace in all the source files.Nick Mathewson2009-01-271-12/+12
* Fix osx compileNick Mathewson2009-01-181-4/+6
* Move per-fd info from eventops into evmap. Not done for win32.c yet.Nick Mathewson2009-01-141-4/+8
* Rename four internal headers to follow the -internal.h convention.Nick Mathewson2009-01-131-2/+2
* remove unused variableNiels Provos2008-12-231-1/+0
* deprecate the usage of signal_{add,del,set} and name it evsignal_{add,del,set...Niels Provos2008-12-231-2/+2
* Restructure the event backends so that they do not need to keep track of even...Niels Provos2008-12-231-119/+96
* support multiple events listening on the same signal; make signals regular ev...Niels Provos2008-07-111-35/+60
* fix a bug where deleting signals with kqueue would delete subsequent addsNiels Provos2008-07-111-2/+5
* 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-1/+5
* 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-15/+15
* r15193@tombo: nickm | 2008-04-16 16:00:35 -0400Nick Mathewson2008-04-161-1/+2
* make event methods static so that they are not exported; from Andrei NigmatulinNiels Provos2008-03-291-12/+12
* Do not free the kqop file descriptor in other processes, also allow it to be ...Niels Provos2008-03-021-1/+4
* address some compiler warnings in debug modeNiels Provos2008-02-091-1/+1
* remove obsoleted recalc codeNiels Provos2007-12-091-8/+0
* move EV_PERSIST handling out of the event backendsNiels Provos2007-11-271-1/+1
* r14944@tombo: nickm | 2007-11-25 12:12:28 -0500Nick Mathewson2007-11-251-5/+9
* r14939@tombo: nickm | 2007-11-25 11:59:26 -0500Nick Mathewson2007-11-251-15/+16
* provide event_reinit() to reinitialized an event_base after fork - necessary ...Niels Provos2007-11-251-1/+3
* Fix compile warning on osx: the udata field in struct kevent is supposed to b...Nick Mathewson2007-08-101-6/+9
* make clock_monotonic work; do not use default timeout;Niels Provos2007-07-301-3/+6
* more the signal base into the event base; this removes global state and makes...Niels Provos2007-03-101-4/+4
* rolling back r339: evconfig.h does not workNiels Provos2007-03-011-1/+1
* make evconfig.h available as installed header file; notNiels Provos2007-02-281-1/+1
* typo in kqueue delete; from Bert JW RegeerNiels Provos2006-09-031-1/+1
* introduce a way to free the base from Nick Mathewson <nickm@freehaven.net>Niels Provos2006-03-281-1/+18
* do not remove kq inkernel flag before event_del gets to it; bug reported byNiels Provos2005-12-171-3/+1
* treate EINVAL as per fd error in kqueue; use argument for debug macros inNiels Provos2005-06-111-0/+3
* detect kqueue bug in Mac OS X 10.4; from Nick MathewsonNiels Provos2005-05-111-0/+21
* fixes from alexander von gernlerNiels Provos2005-04-141-1/+1
* return error code when kqueue fails on a specific fd; from alexander vonNiels Provos2005-04-071-0/+1
* debugging callbacks from Nick Mathewson <nickm@freehaven.net>Niels Provos2005-03-291-14/+7
* fixes for threaded operations from Andrew DanforthNiels Provos2005-01-031-10/+16
* make libevent thread-safe; first cutNiels Provos2004-11-251-8/+4
* fix a warning on freebsd;Niels Provos2004-07-301-1/+1