aboutsummaryrefslogtreecommitdiff
path: root/compat/mingw.h
diff options
context:
space:
mode:
authorErik Faye-Lund <kusmabite@gmail.com>2010-11-04 02:35:15 +0100
committerJunio C Hamano <gitster@pobox.com>2010-11-04 16:53:50 -0700
commit82fc07b7baa6f9e188025cc06a87ebc60a6f2d5e (patch)
treeb9b6e7623b923eeb6f5e793df493aeb9823b5790 /compat/mingw.h
parentef7108caf3cd200620000921f1b121f8c78d9d3b (diff)
downloadgit-82fc07b7baa6f9e188025cc06a87ebc60a6f2d5e.tar.gz
git-82fc07b7baa6f9e188025cc06a87ebc60a6f2d5e.tar.xz
mingw: add kill emulation
This is a quite limited kill-emulation; it can only handle SIGTERM on positive pids. However, it's enough for git-daemon. Signed-off-by: Erik Faye-Lund <kusmabite@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'compat/mingw.h')
-rw-r--r--compat/mingw.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/compat/mingw.h b/compat/mingw.h
index 379d7bff2..51fca2f84 100644
--- a/compat/mingw.h
+++ b/compat/mingw.h
@@ -143,6 +143,9 @@ static inline int mingw_unlink(const char *pathname)
#define WNOHANG 1
pid_t waitpid(pid_t pid, int *status, unsigned options);
+#define kill mingw_kill
+int mingw_kill(pid_t pid, int sig);
+
#ifndef NO_OPENSSL
#include <openssl/ssl.h>
static inline int mingw_SSL_set_fd(SSL *ssl, int fd)