kc3-lang/libevent/sample

Branch :


Log

Author Commit Date CI Message
6cdfeebe 2012-08-28 16:01:14 Rename subordinate Makefile.ams to include.am
7092f3b6 2012-08-28 15:58:18 Switch to non-recursive makefiles This approach should let Make work better, let libevent build faster (especially when using a parallelized build), and basically make the Makefiles easier to maintain. See http://miller.emu.id.au/pmiller/books/rmch/ for more info on why you'd want to do this. This is due to an idea from Zack Weinberg; the patch is my own.
4b70286e 2012-05-02 17:12:23 Merge remote-tracking branch 'origin/patches-2.0' Conflicts: ChangeLog README evdns.c sample/dns-example.c
6610fa5a 2012-05-01 17:07:50 dns-example.c can now take a resolv.conf file on the commandline
2711cda3 2012-04-20 12:14:20 Split long lists in Makefile.am into one-item-per-line
041ca00c 2011-07-12 12:25:41 Add a new libevent_global_shutdown() to free all globals before exiting. Mark Ellzey added a function libevent_shutdown() which calls a set of private functions: * event_free_globals() * event_free_debug_globals() * event_free_debug_globals_locks() * event_free_evsig_globals() * evsig_free_globals() * evsig_free_globals_locks() * evutil_free_globals() * evutil_free_secure_rng_globals() * evutil_free_secure_rng_globals_lock() Nick tweaked this libevent global shutdown code: - rename the function to emphasize that it's for global resources - write more in the doxygen - make function brace style consistent - add a missing void in a function definition.
24dab0b3 2012-03-19 14:39:06 event-read-fifo: Use EV_PERSIST appropriately
a5b370a2 2012-03-19 19:18:46 Rename event-test.c to event-read-fifo.c. Treat it as an example of reading from a named pipe, not an initial teaching tool.
c0dacd23 2012-03-18 08:19:04 On Unix, remove event.fifo left by sample/event-test.c. This fifo would result in grep hanging when doing a recursive grep through the Libevent sources. event.fifo gets removed on SIGINT or normal exit.
19bab4fb 2012-03-12 18:45:00 Fix up sample/event-test.c to use newer interfaces and make it actually work.