kc3-lang/libevent/select.c

Branch :


Log

Author Commit Date CI Message
e49e2891 2012-02-10 17:29:53 Update copyright notices to 2012
3c824bd3 2011-10-24 13:18:09 Update copyright dates to 2011.
49d11362 2011-07-05 00:11:59 Fix select.c compilation on systems with no NFDBITS
d90149d4 2011-05-30 11:53:19 Fix a fencepost bug in the select backend This bug would sometimes lead us to looking one bit off the end of the fdset arrays, and trying to activate a (nonexistent) event if that bit was set. Found by Harlann Stenn. Fixes a test failure on OpenSolaris.
0c0ec0be 2011-01-12 20:28:47 Correctly free selectop fields when select_resize fails in select_init
83e805a4 2011-01-07 13:18:09 Handle resize failures in the select backend better.
666b0966 2010-12-18 01:07:27 Detect and handle more allocation failures.
9c8db0f8 2010-09-23 22:45:55 Fix all warnings in the main codebase flagged by -Wsigned-compare Remember, the code int is_less_than(int a, unsigned b) { return a < b; } is buggy, since the C integer promotion rules basically turn it into int is_less_than(int a, unsigned b) { return ((unsigned)a) < b; } and we really want something closer to int is_less_than(int a, unsigned b) { return a < 0 || ((unsigned)a) < b; } . Suggested by an example from Ralph Castain
4858b794 2010-09-15 01:54:51 Remove the now-useless evsig_caught and evsig_process
ec347b92 2010-07-07 16:45:03 Move event-config.h to include/event2 This change means that all required include files are in event2, and all files not in event2/* are optional.