kc3-lang/libevent/include/event2

Branch :


Log

Author Commit Date CI Message
127d4f21 2010-09-23 16:49:58 Add a LEV_OPT_THREADSAFE option for threadsafe evconnlisteners
c4be8d82 2010-09-20 12:47:39 Add error callback to evconnlistener
2447fe88 2010-08-28 04:07:48 Add event_config_set_num_cpus_hint for tuning thread pools, etc.
42090072 2010-09-06 15:47:07 Move the "function to getsockname() on a listener" to regress_testutils This reverts commit fab50488fcb741884ccdfa7b83643eac3e5c9cbf. The function was, on reflection, not important enough to break the feature freeze, since it's trivial to build on your own.
c51826ff 2010-09-06 15:40:13 Merge remote branch 'github/sysqueue_include_order'
19521436 2010-09-03 16:42:16 Expose a function to add a nameserver by sockaddr
fab50488 2010-09-03 16:41:16 Expose a function to getsockname() on a listener's fd.
ca9048f1 2010-09-02 11:36:44 Move evkeyvalq into a separate header for evhttp_parse_query users The evhttp_parse_query API is a bit misdesigned; all the other evkeyvalq stuff is abstract and lets you get away with having a header stub, but evhttp_parse_query seems to require that you instantiate an empty evkeyvalq of your own.
d3ceca80 2010-09-02 11:27:57 Declare evkeyvalq and event_list even if event_struct.h comes before sys/queue.h Fixes bug 3036645 reported by Mihai Draghicioiu
d4977b52 2010-08-17 13:15:34 Add a condition variable backend, with implementations for pthreads and win32 The interface from the user's POV is similar to the locking implementation: either provide a structure full of function pointers, or just call evthread_use_*_threads() and everything will be okay. The internal interface is meant to vaguely resemble pthread_cond_*, which Windows people will better recognize as *ConditionVariable*.