2020-06-15 14:18:57 +00:00
|
|
|
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│
|
|
|
|
│vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│
|
|
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
|
|
|
│ Copyright 2020 Justine Alexandra Roberts Tunney │
|
|
|
|
│ │
|
2020-12-28 01:18:44 +00:00
|
|
|
│ Permission to use, copy, modify, and/or distribute this software for │
|
|
|
|
│ any purpose with or without fee is hereby granted, provided that the │
|
|
|
|
│ above copyright notice and this permission notice appear in all copies. │
|
2020-06-15 14:18:57 +00:00
|
|
|
│ │
|
2020-12-28 01:18:44 +00:00
|
|
|
│ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL │
|
|
|
|
│ WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED │
|
|
|
|
│ WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE │
|
|
|
|
│ AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL │
|
|
|
|
│ DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR │
|
|
|
|
│ PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER │
|
|
|
|
│ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │
|
|
|
|
│ PERFORMANCE OF THIS SOFTWARE. │
|
2020-06-15 14:18:57 +00:00
|
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
2022-07-08 13:29:24 +00:00
|
|
|
#include "libc/calls/struct/timespec.h"
|
2022-08-13 20:11:56 +00:00
|
|
|
#include "libc/calls/struct/timespec.internal.h"
|
2020-10-11 04:18:53 +00:00
|
|
|
#include "libc/calls/struct/timeval.h"
|
2022-10-05 13:37:15 +00:00
|
|
|
#include "libc/calls/struct/timeval.internal.h"
|
2022-07-08 13:29:24 +00:00
|
|
|
#include "libc/errno.h"
|
2020-10-11 04:18:53 +00:00
|
|
|
#include "libc/sock/internal.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
|
2022-10-05 13:37:15 +00:00
|
|
|
// nanosleep() on xnu: a bloodbath of a polyfill
|
|
|
|
// consider using clock_nanosleep(TIMER_ABSTIME)
|
2021-02-04 03:35:29 +00:00
|
|
|
int sys_nanosleep_xnu(const struct timespec *req, struct timespec *rem) {
|
2022-07-08 13:29:24 +00:00
|
|
|
int rc;
|
2022-10-05 13:37:15 +00:00
|
|
|
struct timeval wt, t1, t2, td;
|
|
|
|
if (rem) sys_gettimeofday_xnu(&t1, 0, 0);
|
2022-11-06 02:49:41 +00:00
|
|
|
wt = timespec_totimeval(*req); // rounds up
|
2022-10-05 13:37:15 +00:00
|
|
|
rc = sys_select(0, 0, 0, 0, &wt);
|
2022-07-08 13:29:24 +00:00
|
|
|
if (rem) {
|
|
|
|
if (!rc) {
|
|
|
|
rem->tv_sec = 0;
|
|
|
|
rem->tv_nsec = 0;
|
|
|
|
} else if (rc == -1 && errno == EINTR) {
|
2022-10-05 13:37:15 +00:00
|
|
|
// xnu select() doesn't modify timeout
|
|
|
|
// so we need, yet another system call
|
|
|
|
sys_gettimeofday_xnu(&t2, 0, 0);
|
2022-11-06 02:49:41 +00:00
|
|
|
td = timeval_sub(t2, t1);
|
|
|
|
if (timeval_cmp(td, wt) >= 0) {
|
2022-07-08 13:29:24 +00:00
|
|
|
rem->tv_sec = 0;
|
|
|
|
rem->tv_nsec = 0;
|
2022-10-05 13:37:15 +00:00
|
|
|
} else {
|
2022-11-06 02:49:41 +00:00
|
|
|
*rem = timeval_totimespec(timeval_sub(wt, td));
|
2022-07-08 13:29:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return rc;
|
2020-06-15 14:18:57 +00:00
|
|
|
}
|