summaryrefslogtreecommitdiff
path: root/src/syssignal.h
diff options
context:
space:
mode:
authorJan Djärv <jan.h.d@swipnet.se>2004-12-15 21:40:41 +0000
committerJan Djärv <jan.h.d@swipnet.se>2004-12-15 21:40:41 +0000
commitfe044f23ac11ab7809d8b04427cc511cf1bad396 (patch)
treea4b28a7e296e3371937dac3cf9c70405450e78ff /src/syssignal.h
parent5b07f7f4147e80772381e70ea7a5b0f5677f977c (diff)
downloademacs-fe044f23ac11ab7809d8b04427cc511cf1bad396.tar.gz
* syssignal.h: Declare main_thread.
(SIGNAL_THREAD_CHECK): New macro. * keyboard.c (input_available_signal): Move thread checking code to macro SIGNAL_THREAD_CHECK and call that macro. (interrupt_signal): Call SIGNAL_THREAD_CHECK. * alloc.c (uninterrupt_malloc): Move main_thread to emacs.c. * emacs.c: Define main_thread. (main): Initialize main_thread. (handle_USR1_signal, handle_USR2_signal, fatal_error_signal) (memory_warning_signal): Call SIGNAL_THREAD_CHECK. * floatfns.c (float_error): Call SIGNAL_THREAD_CHECK. * dispnew.c (window_change_signal): Call SIGNAL_THREAD_CHECK. * sysdep.c (select_alarm): Call SIGNAL_THREAD_CHECK. * process.c (send_process_trap, sigchld_handler): Call SIGNAL_THREAD_CHECK. * data.c (arith_error): Call SIGNAL_THREAD_CHECK. * atimer.c (alarm_signal_handler): Call SIGNAL_THREAD_CHECK.
Diffstat (limited to 'src/syssignal.h')
-rw-r--r--src/syssignal.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/syssignal.h b/src/syssignal.h
index cef71f7459a..04e84df1a3a 100644
--- a/src/syssignal.h
+++ b/src/syssignal.h
@@ -20,6 +20,11 @@ Boston, MA 02111-1307, USA. */
extern void init_signals P_ ((void));
+#ifdef HAVE_GTK_AND_PTHREAD
+#include <pthread.h>
+extern pthread_t main_thread;
+#endif
+
#ifdef POSIX_SIGNALS
/* Don't #include <signal.h>. That header should always be #included
@@ -198,5 +203,27 @@ extern SIGMASKTYPE sigprocmask_set;
char *strsignal ();
#endif
+#ifdef HAVE_GTK_AND_PTHREAD
+#define SIGNAL_THREAD_CHECK(signo) \
+ do { \
+ if (pthread_self () != main_thread) \
+ { \
+ /* POSIX says any thread can receive the signal. On GNU/Linux \
+ that is not true, but for other systems (FreeBSD at least) \
+ it is. So direct the signal to the correct thread and block \
+ it from this thread. */ \
+ sigset_t new_mask; \
+ \
+ sigemptyset (&new_mask); \
+ sigaddset (&new_mask, signo); \
+ pthread_sigmask (SIG_BLOCK, &new_mask, 0); \
+ pthread_kill (main_thread, signo); \
+ return; \
+ } \
+ } while (0)
+
+#else /* not HAVE_GTK_AND_PTHREAD */
+#define SIGNAL_THREAD_CHECK(signo)
+#endif /* not HAVE_GTK_AND_PTHREAD */
/* arch-tag: 4580e86a-340d-4574-9e11-a742b6e1a152
(do not change this comment) */