kc3-lang/libevent/include

Branch :


Log

Author Commit Date CI Message
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*.
60433a0a 2010-08-13 17:08:59 Clean up syntax on TAILQ_ENTRY() usage Though the C standards allow it, it's apparently possible to get MSVC upset by saying "struct { int field; } (declarator);" instead of "struct {int field; } declarator;", so let's just not do that. Bugfix for 3044492 (commit msg by nickm)
a4af9be1 2010-08-13 11:41:37 Make include/event2/event-config.h not included in source dist As a generated file, it shouldn't get included in our source distribution. Apparently there is an automake incant for this: nobase_ even stacks with nodist_ .