mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
[loop] check_bottom_halves after starting libevent and curl
dump with curl enabled did not work
This commit is contained in:
parent
88de3ca754
commit
f2690c3e21
@ -1149,7 +1149,6 @@ select_loop(void (*init)(void))
|
||||
set_handlers(signal_pipe[0], clear_events_ptr, NULL, NULL, (void *)(intptr_t)signal_pipe[0]);
|
||||
#endif
|
||||
init();
|
||||
check_bottom_halves();
|
||||
|
||||
#ifdef USE_LIBEVENT
|
||||
enable_libevent();
|
||||
@ -1206,6 +1205,7 @@ select_loop(void (*init)(void))
|
||||
|
||||
/* we do not call any curl_multi_socket*() function yet as we have no handles added! */
|
||||
#endif
|
||||
check_bottom_halves();
|
||||
while (!program.terminate) {
|
||||
check_signals();
|
||||
if (1 /*(!F)*/) {
|
||||
@ -1253,6 +1253,7 @@ select_loop(void (*init)(void))
|
||||
curl_multi_setopt(g.multi, CURLMOPT_TIMERDATA, &g);
|
||||
/* we do not call any curl_multi_socket*() function yet as we have no handles added! */
|
||||
#endif
|
||||
check_bottom_halves();
|
||||
|
||||
while (!program.terminate) {
|
||||
struct timeval timeout = { 0, 0 };
|
||||
|
Loading…
Reference in New Issue
Block a user