-
- Downloads
build: fix GCC compilation error because of call of deprecated function `siginterrupt`
Error message: > main_eventmon.cpp:109:17: error: ‘int siginterrupt(int, int)’ is deprecated: Use sigaction with SA_RESTART instead [-Werror=deprecated-declarations] The current fix consists in ignoring the error message at the moment, but we should replace `siginterrupt` with `sigaction` in the future.
Please register or sign in to comment