ttcn3_syssim: continue when epoll returns -1

this allows to debug and step in the SS
This commit is contained in:
Andre Puschmann 2020-09-18 15:10:16 +02:00
parent 1b266257a1
commit d90de639e5
1 changed files with 1 additions and 1 deletions

View File

@ -727,7 +727,7 @@ int ttcn3_syssim::run()
// handle event
if (nof_events == -1) {
perror("epoll_wait() error");
break;
continue;
}
if (nof_events == 0) {
printf("time out %f sec expired\n", epoll_timeout_ms / 1000.0);