From 2603675f2fb65b05332ed18454776e67f89960fe Mon Sep 17 00:00:00 2001 From: Christian Eltzschig Date: Wed, 17 Jan 2024 23:12:47 +0100 Subject: [PATCH] [#81] Temporary sighandler fix --- iceoryx2-bb/posix/src/signal.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/iceoryx2-bb/posix/src/signal.rs b/iceoryx2-bb/posix/src/signal.rs index 8fdf7f5fb..91f6b7e18 100644 --- a/iceoryx2-bb/posix/src/signal.rs +++ b/iceoryx2-bb/posix/src/signal.rs @@ -128,7 +128,9 @@ define_signals! { Alarm = posix::SIGALRM, Bus = posix::SIGBUS, Child = posix::SIGCHLD, - Continue = posix::SIGCONT, + //TODO: https://github.com/eclipse-iceoryx/iceoryx2/issues/81 + // comment in Continue again when the bindgen bug is fixed + //Continue = posix::SIGCONT, FloatingPointError = posix::SIGFPE, Hangup = posix::SIGHUP, IllegalInstruction = posix::SIGILL,