summaryrefslogtreecommitdiff
path: root/compat
diff options
context:
space:
mode:
authorJohannes Sixt <j6t@kdbg.org>2014-09-22 18:24:34 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-09-22 20:41:52 (GMT)
commit4e6d207c45e6f5c13b38c4a200f0d3339f88ad34 (patch)
treeb181deb0b1e7fc50fc90d785e2491cf387761844 /compat
parent7559a1be8a0afb10df41d25e4cf4c5285a5faef1 (diff)
downloadgit-4e6d207c45e6f5c13b38c4a200f0d3339f88ad34.zip
git-4e6d207c45e6f5c13b38c4a200f0d3339f88ad34.tar.gz
git-4e6d207c45e6f5c13b38c4a200f0d3339f88ad34.tar.bz2
mingw.h: add dummy functions for sigset_t operations
Windows does not have POSIX-like signals, and so we ignore all operations on the non-existent signal mask machinery. Do not turn sigemptyset into a function, but leave it a macro that erases the code in the argument because it is used to set sa_mask of a struct sigaction, but our dummy in mingw.h does not have that member. Signed-off-by: Johannes Sixt <j6t@kdbg.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'compat')
-rw-r--r--compat/mingw.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/compat/mingw.h b/compat/mingw.h
index df0e320..5e499cf 100644
--- a/compat/mingw.h
+++ b/compat/mingw.h
@@ -69,7 +69,6 @@ struct sigaction {
sig_handler_t sa_handler;
unsigned sa_flags;
};
-#define sigemptyset(x) (void)0
#define SA_RESTART 0
struct itimerval {
@@ -116,6 +115,12 @@ static inline int fcntl(int fd, int cmd, ...)
}
/* bash cannot reliably detect negative return codes as failure */
#define exit(code) exit((code) & 0xff)
+#define sigemptyset(x) (void)0
+static inline int sigaddset(sigset_t *set, int signum)
+{ return 0; }
+#define SIG_UNBLOCK 0
+static inline int sigprocmask(int how, const sigset_t *set, sigset_t *oldset)
+{ return 0; }
/*
* simple adaptors