aboutsummaryrefslogtreecommitdiffstats
path: root/compat/mingw-posix.h
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2025-07-21 09:14:28 -0700
committerJunio C Hamano <gitster@pobox.com>2025-07-21 09:14:28 -0700
commitd80b7640b12496f86eb534460c7edfe1a5f1d79e (patch)
treeaa1ac4653eb1d3d7fb5a42333518381e59c2770d /compat/mingw-posix.h
parentfe02fe75fcfea2f487284f4507c3d86760d71805 (diff)
parentd83e1eef3bbf8cd85ce5ffc4afff3fbdfb006fd1 (diff)
downloadgit-d80b7640b12496f86eb534460c7edfe1a5f1d79e.tar.gz
Merge branch 'cb/daemon-reap-children'
Futz with SIGCHLD handling in "git daemon". * cb/daemon-reap-children: daemon: use sigaction() to install child_handler() compat/mingw: allow sigaction(SIGCHLD)
Diffstat (limited to 'compat/mingw-posix.h')
-rw-r--r--compat/mingw-posix.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/compat/mingw-posix.h b/compat/mingw-posix.h
index 88e0cf9292..631a208684 100644
--- a/compat/mingw-posix.h
+++ b/compat/mingw-posix.h
@@ -96,6 +96,7 @@ struct sigaction {
unsigned sa_flags;
};
#define SA_RESTART 0
+#define SA_NOCLDSTOP 1
struct itimerval {
struct timeval it_value, it_interval;