|   | b8f59807 | 2013-07-20T14:02:49 |  | libevent/win32_dealloc() : fix sizeof(pointer) vs sizeof(*pointer) | 
            
              |   | 62bd2c44 | 2012-11-02T11:44:29 |  | Fix compilation on mingw64 with -DUSE_DEBUG | 
            
              |   | 160e58b6 | 2012-07-16T15:34:18 |  | Win32: avoid crash when waiting forever on zero fds. | 
            
              |   | e49e2891 | 2012-02-10T17:29:53 |  | Update copyright notices to 2012 | 
            
              |   | 3c824bd3 | 2011-10-24T13:18:09 |  | Update copyright dates to 2011. | 
            
              |   | b6a158ca | 2010-11-01T11:48:57 |  | Rename "size" variables in win32select that were really fd counts. | 
            
              |   | 598d1336 | 2010-10-27T22:57:53 |  | Try to clear up more size_t vs int/long issues. | 
            
              |   | e06f514d | 2010-10-14T13:51:24 |  | Fix signed/unsigned warnings on win32 | 
            
              |   | 4858b794 | 2010-09-15T01:54:51 |  | Remove the now-useless evsig_caught and evsig_process | 
            
              |   | ec347b92 | 2010-07-07T16: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. | 
            
              |   | 850c3ff2 | 2010-03-31T20:30:55 |  | Add evutil_tv_to_msec for safe conversion of timevals to milliseconds.
This is useful for backends that require their timeout values be in
milliseconds. | 
            
              |   | 2c2618d8 | 2010-03-05T13:00:15 |  | more whitespace normalization | 
            
              |   | 17efc1cd | 2010-03-04T01:25:51 |  | Update all our copyright notices to say "2010" | 
            
              |   | 4faeaea9 | 2010-02-19T03:39:50 |  | Clean up formatting: function/keyword spacing consistency.
- Keywords always have a space before a paren.  Functions never do.
- No more than 3 blank lines in a row. | 
            
              |   | e5bbd40a | 2010-02-18T17:41:15 |  | Clean up formatting: use tabs, not 8-spaces, to indent. | 
            
              |   | 76cd2b70 | 2009-11-27T16:44:47 |  | Stop passing EVTHREAD_READ and EVTHREAD_WRITE to non-rw locks.
Previously, our default lock model kind of assumed that every lock was
potentially a read-write lock.  This was a poor choice, since
read-write locks are far more expensive than regular locks, and so the
lock API should only use them when we can actually take advantage of
them.  Neither our pthreads or win32 lock implementation provided rw
locks.
Now that we have a way (not currently used!) to	indicate that we
really want a read-write lock, we shouldn't actually say "lock this
for reading" or "lock this for writing" unless we mean it. | 
            
              |   | 5ec43fe4 | 2009-11-06T17:12:39 |  | Fix a miscalculated realloc() size in win32select.c.
This bug was introduced by the code to make the backend able to safely release the base lock while calling select().
Also, we change win32select.c to the same 32-fds-to-start default as the rest of the backends, so that the main/many_events test can test it.  It was at 64-to-start, so the test wasn't hitting it.
svn:r1513 | 
            
              |   | d3401928 | 2009-11-05T18:49:08 |  | Rename win32.c to win32select.c, and take it out of the WIN32-Code ghetto.
svn:r1504 |