summaryrefslogtreecommitdiff
path: root/events.h
diff options
context:
space:
mode:
authorIan Jackson <ijackson@chiark.greenend.org.uk>2017-01-04 00:43:15 +0000
committerIan Jackson <ijackson@chiark.greenend.org.uk>2017-01-04 00:48:56 +0000
commite4a2a28e51f9a4f57ef146406579d72be894a520 (patch)
tree70437db337b802412c28a5b967513c8d76bd6ba1 /events.h
parentee0f734bacdba9aa4fd9b42d18936776be09ada8 (diff)
Revert "Block signals except during the event loop."
This approach leaks the blocking signal mask into subprocesses, It could be fixed by finding all the places where we fork and exec, but vtwm likes to use system and popen, which are hard to adjust since there is no hook which runs in the child. (We could use pthread_atfork but then we'd have to link against pthreads...) This reverts commit 91b2ee084430dbe5d81d32d15e06b53d931514d9. (apart from the changelog entry) Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
Diffstat (limited to 'events.h')
-rw-r--r--events.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/events.h b/events.h
index 6c447df..8d42304 100644
--- a/events.h
+++ b/events.h
@@ -77,10 +77,6 @@ extern void InstallWindowColormaps();
extern void RedoDoorName(); /* djhjr - 2/28/99 */
extern void RedoListWindow(); /* djhjr - 3/1/99 */
-extern void BlockSignalsAddToList();
-extern void BlockSignals();
-extern void UnblockSignals();
-
extern event_proc EventHandler[];
extern Window DragWindow;
extern int origDragX;