Commit 3bf5341b authored by Laurent THOMAS's avatar Laurent THOMAS

work around signal handler

parent 08051056
......@@ -770,6 +770,8 @@ static bool flushInput(rfsimulator_state_t *t, int timeout, int nsamps_for_initi
return false;
} else {
LOG_W(HW, "epoll_wait() failed, errno(%d)\n", errno);
AssertFatal(errno != EBADF,
"Either a big bug, either another piece of code have killed our socket (see SIGPIPE handler), let's die\n");
return false;
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment