summary refs log tree commit diff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--sandman.m6
1 files changed, 3 insertions, 3 deletions
diff --git a/sandman.m b/sandman.m
index 44ab267..e8163c0 100644
--- a/sandman.m
+++ b/sandman.m
@@ -41,7 +41,7 @@ int main(int argc, char *argv[]) {
 	struct sigaction sa = {
 		.sa_handler = handler,
 		.sa_mask = mask,
-		.sa_flags = SA_RESTART,
+		.sa_flags = SA_NOCLDSTOP | SA_RESTART,
 	};
 	sigaction(SIGCHLD, &sa, NULL);
 
@@ -56,7 +56,7 @@ int main(int argc, char *argv[]) {
 		[[NSWorkspace sharedWorkspace] notificationCenter]
 		addObserverForName: NSWorkspaceWillSleepNotification
 		object: nil
-		queue: [NSOperationQueue mainQueue]
+		queue: nil
 		usingBlock: ^(NSNotification *note) {
 			(void)note;
 			int error = kill(pid, SIGTSTP);
@@ -68,7 +68,7 @@ int main(int argc, char *argv[]) {
 		[[NSWorkspace sharedWorkspace] notificationCenter]
 		addObserverForName: NSWorkspaceDidWakeNotification
 		object: nil
-		queue: [NSOperationQueue mainQueue]
+		queue: nil
 		usingBlock: ^(NSNotification *note) {
 			(void)note;
 			int error = kill(pid, SIGCONT);
2020-04-26Generate index.atomJune McEnroe 2020-04-26Generate XHTML content in Atom entriesJune McEnroe 2020-04-25Style index pageJune McEnroe 2020-04-25Render index.htmlJune McEnroe 2020-04-25Wrap <summary> replies count in <data>June McEnroe 2020-04-25Accumulate thread envelopes before concatenationJune McEnroe 2020-04-24Free envelope in concatDataJune McEnroe 2020-04-24Use replyTo address in mailto:June McEnroe 2020-04-23Wrap quoted lines in <q>June McEnroe