]> git.ipfire.org Git - people/ms/dma.git/commitdiff
drop SA_NOCLDWAIT: not required when using SIG_IGN
authorSimon Schubert <2@0x2c.org>
Thu, 28 Oct 2010 22:01:48 +0000 (00:01 +0200)
committerSimon Schubert <2@0x2c.org>
Thu, 28 Oct 2010 22:01:48 +0000 (00:01 +0200)
dma.c

diff --git a/dma.c b/dma.c
index ca1afb01e20052393a2e9e9c1128774fe04d8999..407ec9a7ab8350051b939907da42ccd0015f9163 100644 (file)
--- a/dma.c
+++ b/dma.c
@@ -216,9 +216,6 @@ go_background(struct queue *queue)
        daemonize = 0;
 
        bzero(&sa, sizeof(sa));
-#ifdef SA_NOCLDWAIT
-       sa.sa_flags = SA_NOCLDWAIT;
-#endif
        sa.sa_handler = SIG_IGN;
        sigaction(SIGCHLD, &sa, NULL);