aboutsummaryrefslogtreecommitdiff
path: root/winsup/cygwin/signal.cc
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2017-12-18 19:44:30 +0100
committerCorinna Vinschen <corinna@vinschen.de>2017-12-18 19:46:35 +0100
commit7af691a7848f808d629a8c18fe3b7a6aed9b9870 (patch)
treeedd8c049f581ee650d0d4f438b1bf853979a3e53 /winsup/cygwin/signal.cc
parent24ff42d79aab60651113d60b5a8e9081c15acd82 (diff)
downloadnewlib-7af691a7848f808d629a8c18fe3b7a6aed9b9870.zip
newlib-7af691a7848f808d629a8c18fe3b7a6aed9b9870.tar.gz
newlib-7af691a7848f808d629a8c18fe3b7a6aed9b9870.tar.bz2
Cygwin: rearrange sigwait functions, convert sigwait_common to inline
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
Diffstat (limited to 'winsup/cygwin/signal.cc')
-rw-r--r--winsup/cygwin/signal.cc88
1 files changed, 43 insertions, 45 deletions
diff --git a/winsup/cygwin/signal.cc b/winsup/cygwin/signal.cc
index 16210b5..f7c56c5 100644
--- a/winsup/cygwin/signal.cc
+++ b/winsup/cygwin/signal.cc
@@ -575,51 +575,7 @@ siginterrupt (int sig, int flag)
return res;
}
-static int sigwait_common (const sigset_t *, siginfo_t *, PLARGE_INTEGER);
-
-extern "C" int
-sigtimedwait (const sigset_t *set, siginfo_t *info, const timespec *timeout)
-{
- LARGE_INTEGER waittime;
-
- if (timeout)
- {
- if (timeout->tv_sec < 0
- || timeout->tv_nsec < 0 || timeout->tv_nsec > (NSPERSEC * 100LL))
- {
- set_errno (EINVAL);
- return -1;
- }
- /* convert timespec to 100ns units */
- waittime.QuadPart = (LONGLONG) timeout->tv_sec * NSPERSEC
- + ((LONGLONG) timeout->tv_nsec + 99LL) / 100LL;
- }
-
- return sigwait_common (set, info, timeout ? &waittime : cw_infinite);
-}
-
-extern "C" int
-sigwait (const sigset_t *set, int *sig_ptr)
-{
- int sig;
-
- do
- {
- sig = sigwait_common (set, NULL, cw_infinite);
- }
- while (sig == -1 && get_errno () == EINTR);
- if (sig > 0)
- *sig_ptr = sig;
- return sig > 0 ? 0 : get_errno ();
-}
-
-extern "C" int
-sigwaitinfo (const sigset_t *set, siginfo_t *info)
-{
- return sigwait_common (set, info, cw_infinite);
-}
-
-static int
+static inline int
sigwait_common (const sigset_t *set, siginfo_t *info, PLARGE_INTEGER waittime)
{
int res = -1;
@@ -664,6 +620,48 @@ sigwait_common (const sigset_t *set, siginfo_t *info, PLARGE_INTEGER waittime)
return res;
}
+extern "C" int
+sigtimedwait (const sigset_t *set, siginfo_t *info, const timespec *timeout)
+{
+ LARGE_INTEGER waittime;
+
+ if (timeout)
+ {
+ if (timeout->tv_sec < 0
+ || timeout->tv_nsec < 0 || timeout->tv_nsec > (NSPERSEC * 100LL))
+ {
+ set_errno (EINVAL);
+ return -1;
+ }
+ /* convert timespec to 100ns units */
+ waittime.QuadPart = (LONGLONG) timeout->tv_sec * NSPERSEC
+ + ((LONGLONG) timeout->tv_nsec + 99LL) / 100LL;
+ }
+
+ return sigwait_common (set, info, timeout ? &waittime : cw_infinite);
+}
+
+extern "C" int
+sigwait (const sigset_t *set, int *sig_ptr)
+{
+ int sig;
+
+ do
+ {
+ sig = sigwait_common (set, NULL, cw_infinite);
+ }
+ while (sig == -1 && get_errno () == EINTR);
+ if (sig > 0)
+ *sig_ptr = sig;
+ return sig > 0 ? 0 : get_errno ();
+}
+
+extern "C" int
+sigwaitinfo (const sigset_t *set, siginfo_t *info)
+{
+ return sigwait_common (set, info, cw_infinite);
+}
+
/* FIXME: SUSv3 says that this function should block until the signal has
actually been delivered. Currently, this will only happen when sending
signals to the current process. It will not happen when sending signals