From 52f6efc2a07a56548675ce90b0de9b60aa95bfbc Mon Sep 17 00:00:00 2001 From: Juan Jose Garcia Ripoll Date: Sun, 22 Jul 2012 22:12:57 +0200 Subject: [PATCH] Fixed typo in process.d --- src/c/threads/process.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/c/threads/process.d b/src/c/threads/process.d index 0d9dced36..082e5d0f7 100755 --- a/src/c/threads/process.d +++ b/src/c/threads/process.d @@ -208,7 +208,7 @@ thread_cleanup(void *aux) { sigset_t new[1]; sigemptyset(new); - sigaddset(new, ecl_option_values[ECL_OPT_SIGNAL_HANDLING_THREAD]); + sigaddset(new, ecl_option_values[ECL_OPT_THREAD_INTERRUPT_SIGNAL]); pthread_sigmask(SIG_BLOCK, new, NULL); } #endif