[openssh-commits] [openssh] 02/07: Check for raise and supply if needed.
git+noreply at mindrot.org
git+noreply at mindrot.org
Mon Feb 26 00:15:44 AEDT 2018
This is an automated email from the git hooks/post-receive script.
dtucker pushed a commit to branch master
in repository openssh.
commit 6c8c9a615b6d31db8a87bc25033f053d5b0a831e
Author: Darren Tucker <dtucker at dtucker.net>
Date: Sat Feb 24 20:46:37 2018 +1100
Check for raise and supply if needed.
---
configure.ac | 1 +
openbsd-compat/bsd-misc.c | 8 ++++++++
openbsd-compat/bsd-misc.h | 4 ++++
3 files changed, 13 insertions(+)
diff --git a/configure.ac b/configure.ac
index e23540e6..7342dcb7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1744,6 +1744,7 @@ AC_CHECK_FUNCS([ \
poll \
prctl \
pstat \
+ raise \
readpassphrase \
reallocarray \
recvmsg \
diff --git a/openbsd-compat/bsd-misc.c b/openbsd-compat/bsd-misc.c
index 3e8f74b7..af58f3bd 100644
--- a/openbsd-compat/bsd-misc.c
+++ b/openbsd-compat/bsd-misc.c
@@ -290,3 +290,11 @@ bzero(void *b, size_t n)
(void)memset(b, 0, n);
}
#endif
+
+#ifndef HAVE_RAISE
+int
+raise(int sig)
+{
+ kill(getpid(), sig);
+}
+#endif
diff --git a/openbsd-compat/bsd-misc.h b/openbsd-compat/bsd-misc.h
index bf5fad18..3cb912d2 100644
--- a/openbsd-compat/bsd-misc.h
+++ b/openbsd-compat/bsd-misc.h
@@ -137,4 +137,8 @@ long long llabs(long long);
void bzero(void *, size_t);
#endif
+#ifndef HAVE_RAISE
+int raise(int);
+#endif
+
#endif /* _BSD_MISC_H */
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list