]> git.ipfire.org Git - people/ms/dma.git/commitdiff
drop 36-sa_nocldwait.patch: already applied
authorSimon Schubert <2@0x2c.org>
Thu, 28 Oct 2010 22:02:14 +0000 (00:02 +0200)
committerSimon Schubert <2@0x2c.org>
Thu, 28 Oct 2010 22:02:14 +0000 (00:02 +0200)
debian/patches/36-sa_nocldwait.patch [deleted file]

diff --git a/debian/patches/36-sa_nocldwait.patch b/debian/patches/36-sa_nocldwait.patch
deleted file mode 100644 (file)
index 4a40fe3..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-Description: Do not use SA_NOCLDWAIT on platforms like the GNU Hurd.
-Forwarded: http://gitorious.org/dma/dma/merge_requests/1
-Author: Peter Pentchev <roam@ringlet.net>
-Last-Update: 2010-10-07
-
---- a/dma.c
-+++ b/dma.c
-@@ -218,7 +218,9 @@
-       daemonize = 0;
-       bzero(&sa, sizeof(sa));
-+#ifdef SA_NOCLDWAIT
-       sa.sa_flags = SA_NOCLDWAIT;
-+#endif
-       sa.sa_handler = SIG_IGN;
-       sigaction(SIGCHLD, &sa, NULL);