|
Revision tags: release-2.2.1-alpha, release-2.1.12-stable, release-2.1.11-stable, release-2.1.10-stable |
|
| #
22380996 |
| 24-Mar-2019 |
Azat Khuzhin <[email protected]> |
Link test/regress with event_core/event_extra over event
Due to regress linked with event and event_core (both of them includes evthread.c) there will be two different evthread_id_fn_ variables unde
Link test/regress with event_core/event_extra over event
Due to regress linked with event and event_core (both of them includes evthread.c) there will be two different evthread_id_fn_ variables under mingw64: evthread_id_fn_: &0x5294f20a8 evthread_id_fn_: &0x4ba0030a8
And because of this evthread_use_pthreads() can/will set one copy of variables while evthread*() functions will access another, which will break a lot of things (for example main/del_notify test).
Fixes: #792 (cherry picked from commit 2ae875ed1216a8896d8af0414cb4efbcb907bae5)
show more ...
|
|
Revision tags: release-2.1.9-beta, release-2.0.23-beta |
|
| #
c46ff439 |
| 28-Jun-2017 |
Ondřej Kuzník <[email protected]> |
Fix tests with detached builds
Closes: #524 (cherry picked from commit cf7f5b0dc484152ae3be7ea6ba57552595891608)
|
| #
822d6462 |
| 01-May-2017 |
Azat Khuzhin <[email protected]> |
Add missing print-winsock-errors.c into dist archive
Refs: #497 (cherry picked from commit 8d89c212587c560df8cd7089fb1a2fcd2a3dca82)
|
|
Revision tags: release-2.1.8-stable |
|
| #
ea1d30ca |
| 20-Jan-2017 |
Azat Khuzhin <[email protected]> |
test: register different tests in automake
Before this patch we have one test.sh (well test-script.sh), and tooks very long to run it sequentially, but they are pretty lightweight, so we should run
test: register different tests in automake
Before this patch we have one test.sh (well test-script.sh), and tooks very long to run it sequentially, but they are pretty lightweight, so we should run then in parallel.
show more ...
|
|
Revision tags: release-2.1.7-rc, release-2.1.6-beta |
|
| #
bb09535b |
| 07-Aug-2016 |
Azat Khuzhin <[email protected]> |
autoconf: fix --disable-thread-support build under win32
Fixes: https://ci.appveyor.com/project/azat/libevent/build/job/gvud4tcqsd5bnarl Fixes: https://ci.appveyor.com/project/azat/libevent/build/2.
autoconf: fix --disable-thread-support build under win32
Fixes: https://ci.appveyor.com/project/azat/libevent/build/job/gvud4tcqsd5bnarl Fixes: https://ci.appveyor.com/project/azat/libevent/build/2.1.6.80/job/5frnb1c3n4quxxqy Fixes: https://ci.appveyor.com/project/azat/libevent/build/2.1.6.80/job/3wdahbrew7setmoa
show more ...
|
|
Revision tags: release-2.0.22-stable, release-1.4.15-stable, release-2.1.5-beta, release-2.1.4-alpha |
|
| #
239d8345 |
| 06-Mar-2014 |
Nick Mathewson <[email protected]> |
Fix 'make distcheck' by adding regress.gen.[ch] to DISTCLEANFILES
Patch from Harlan Stenn.
|
| #
b1b69ac7 |
| 18-Jan-2014 |
Diego Giagio <[email protected]> |
Implemented EV_CLOSED event for epoll backend (EPOLLRDHUP).
- Added new EV_CLOSED event - detects premature connection close by clients without the necessity of reading all the pending data. Doe
Implemented EV_CLOSED event for epoll backend (EPOLLRDHUP).
- Added new EV_CLOSED event - detects premature connection close by clients without the necessity of reading all the pending data. Does not depend on EV_READ and/or EV_WRITE.
- Added new EV_FEATURE_EARLY_CLOSED feature for epoll. Must be supported for listening to EV_CLOSED event.
- Added new regression test: test-closed.c
- All regression tests passed (test/regress and test/test.sh)
- strace output of test-closed using EV_CLOSED: socketpair(PF_LOCAL, SOCK_STREAM, 0, [6, 7]) = 0 sendto(6, "test string\0", 12, 0, NULL, 0) = 12 shutdown(6, SHUT_WR) = 0 epoll_ctl(3, EPOLL_CTL_ADD, 7, {EPOLLRDHUP, {u32=7, u64=7}}) = 0 epoll_wait(3, {{EPOLLRDHUP, {u32=7, u64=7}}}, 32, 3000) = 1 epoll_ctl(3, EPOLL_CTL_MOD, 7, {EPOLLRDHUP, {u32=7, u64=7}}) = 0 fstat(1, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 4), ...}) mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYM... write(1, "closed_cb: detected connection close "..., 45) = 45
show more ...
|
| #
243386cc |
| 15-Sep-2013 |
Ross Lagerwall <[email protected]> |
rpcgen: Generate regress.gen.[c,h] in build rather than src dir
Currently an out-of-tree build will either write to the src dir or reuse the existing regress.gen.[c,h]. But if building from a read-
rpcgen: Generate regress.gen.[c,h] in build rather than src dir
Currently an out-of-tree build will either write to the src dir or reuse the existing regress.gen.[c,h]. But if building from a read-only git tree (or if the git dir is cleaned), these files will not exist and the build fails. So write the files to the build dir. If the system does not have python, the regress.gen.[c,h] will be used from the src dir if they exist.
show more ...
|
|
Revision tags: release-2.1.3-alpha |
|
| #
8eedeabe |
| 28-Mar-2013 |
Nick Mathewson <[email protected]> |
Implement event_finalize() and related functions to avoid certain deadlocks
|
| #
f935e215 |
| 15-Mar-2013 |
Nick Mathewson <[email protected]> |
build test/test-script.sh on systems with a less-featureful $<
|
| #
787fd748 |
| 15-Mar-2013 |
Nick Mathewson <[email protected]> |
Make --disable-libevent-regress work again
|
| #
2863c837 |
| 09-Feb-2013 |
Nick Mathewson <[email protected]> |
Avoid using $(top_srcdir) in TESTS.
Newer automakes don't like this.
|
|
Revision tags: release-2.1.2-alpha, release-2.0.21-stable |
|
| #
1d9d5110 |
| 15-Nov-2012 |
Nick Mathewson <[email protected]> |
Use the same CFLAGS for openssl when building unit tests as with libevent
|
| #
1e3123da |
| 28-Aug-2012 |
Nick Mathewson <[email protected]> |
Fix handling of no-python case for nonrecursive make
|
| #
607a8ff9 |
| 28-Aug-2012 |
Nick Mathewson <[email protected]> |
Be quiet when making regress.gen.[ch]
|
| #
371a1237 |
| 28-Aug-2012 |
Nick Mathewson <[email protected]> |
Make quiet build even quieter
|
| #
6cdfeebe |
| 28-Aug-2012 |
Nick Mathewson <[email protected]> |
Rename subordinate Makefile.ams to include.am
|