kc3-lang/libevent/event-internal.h

Branch :


Log

Author Commit Date CI Message
2bfda401 2012-04-30 17:30:48 If a higher-priority event becomes active, don't continue running events of the current priority. Bug found by Ralph Castain.
e49e2891 2012-02-10 17:29:53 Update copyright notices to 2012
27737d55 2012-01-21 12:55:15 Add function to check referential integrity of an event_base
3c824bd3 2011-10-24 13:18:09 Update copyright dates to 2011.
5b18f130 2011-08-24 16:17:05 Make rate limiting work with common_timeout logic
e7fe9270 2011-07-04 12:16:08 Merge remote-tracking branch 'github/20_global_locks_init' into patches-2.0
e9340964 2011-06-22 11:22:35 Fix AIX build issue with TAILQ_FOREACH definition Reported by Lawnstein Chan.
b683cae3 2011-04-22 12:01:25 Avoid race-condition when initializing global locks Previously, we did stuff like if (!lock) EVTHREAD_ALLOC_LOCK(lock,0); for the evsig base global lock, the arc4random lock, and the debug_map lock. But that's potentially racy! Instead, we move the responisiblity for global lock initialization to the functions where we set up the lock callbacks. (Rationale: We already require that you set up the locking callbacks before you create any event_base, and that you do so exatly once.)
a459ef70 2011-03-03 15:34:22 Have event_base_gettimeofday_cached() always return wall-clock time Based on code by Dave Hart
c4dc3353 2010-11-23 00:22:01 Add some checks since lack of TAILQ_FOREACH doesn't imply lack of FIRST, END, NEXT, or INSERT_BEFORE. Quiet some warnings in XL C.