Check SIGCHLD signal handler at each event loop.

[INTERPRETER]
* BUG: Check SIGCHLD signal handler at each event loop.
This commit is contained in:
gambas 2021-01-18 21:40:48 +01:00
parent 9f696b9a39
commit 1e7ea9f50c

View file

@ -27,6 +27,7 @@
#include "gb_common_buffer.h"
#include "gbx_exec.h"
#include "gbx_api.h"
#include "gbx_signal.h"
#include "gbx_event.h"
@ -231,6 +232,8 @@ bool EVENT_check_post(void)
fprintf(stderr, "EVENT_check_post: START\n");
#endif
SIGNAL_check(SIGCHLD);
while (_post_list)
{
ret = TRUE;