summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
Diffstat (limited to 'Modules')
-rw-r--r--Modules/signalmodule.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/Modules/signalmodule.c b/Modules/signalmodule.c
index 9c5a18f..b9f7963 100644
--- a/Modules/signalmodule.c
+++ b/Modules/signalmodule.c
@@ -62,6 +62,9 @@
handler ignores signals if getpid() isn't the same as in the main
thread. XXX This is a hack.
+ GNU pth is a user-space threading library, and as such, all threads
+ run within the same process. In this case, if the currently running
+ thread is not the main_thread, send the signal to the main_thread.
*/
#ifdef WITH_THREAD
@@ -109,6 +112,12 @@ static void
signal_handler(int sig_num)
{
#ifdef WITH_THREAD
+#ifdef WITH_PTH
+ if (PyThread_get_thread_ident() != main_thread) {
+ pth_raise(*(pth_t *) main_thread, sig_num);
+ return;
+ }
+#endif
/* See NOTES section above */
if (getpid() == main_pid) {
#endif