Symbol: nanosleep
bin/sleep/sleep.c
120
while (nanosleep(&time_to_sleep, &time_to_sleep) != 0) {
crypto/krb5/src/util/verto/ev.c
1910
nanosleep (&ts, 0);
crypto/openssh/auth2.c
265
nanosleep(&ts, NULL);
crypto/openssh/misc.c
1833
while (nanosleep(&ts, &rm) == -1) {
crypto/openssh/openbsd-compat/bsd-misc.c
280
return nanosleep(&ts, NULL);
crypto/openssh/openbsd-compat/bsd-misc.h
93
int nanosleep(const struct timespec *, struct timespec *);
crypto/openssh/sk-usbhid.c
285
nanosleep(&ts_pause, NULL);
crypto/openssl/crypto/sleep.c
65
nanosleep(&ts, NULL);
include/time.h
147
int nanosleep(const struct timespec *, struct timespec *);
lib/libc/gen/sleep.c
58
if (INTERPOS_SYS(nanosleep, &time_to_sleep, &time_remaining) != -1)
lib/libc/gen/usleep.c
48
return (INTERPOS_SYS(nanosleep, &time_to_sleep, NULL));
lib/libc/sys/nanosleep.c
40
return (INTERPOS_SYS(nanosleep, rqtp, rmtp));
lib/libstdthreads/thrd.c
118
return (nanosleep(duration, remaining));
lib/libsys/interposing_table.c
47
SLOT(nanosleep, __sys_nanosleep),
lib/libthr/thread/thr_syscalls.c
673
SLOT(nanosleep);
lib/libutil/pidfile.c
114
nanosleep(&rqtp, 0);
libexec/getty/subr.c
650
(void)nanosleep(&timeout, NULL);
sbin/ipf/ipsend/iptests.c
85
(void) nanosleep(&ts, NULL)
tests/sys/capsicum/capmode.cc
322
EXPECT_OK(nanosleep(&ts, NULL));
tests/sys/kern/ptrace_test.c
4182
nanosleep(&rqt, NULL);
tests/sys/kern/ptrace_test.c
4501
shm->nanosleep_res = nanosleep(&rqt, NULL);
tests/sys/kern/timerfd.c
1168
ATF_REQUIRE(nanosleep(&(struct timespec) { .tv_sec = 2 }, NULL) == 0);
tests/sys/kern/timerfd.c
1225
ATF_REQUIRE(nanosleep(&(struct timespec) { .tv_sec = 2 }, NULL) == 0);
tests/sys/kqueue/libkqueue/timer.c
52
nanosleep(&stime, NULL);
tests/sys/kqueue/libkqueue/timer.c
66
nanosleep(&stime, NULL);
tests/sys/netinet/ip_reass_test.c
135
(void)nanosleep(&ts, NULL);
tools/regression/gaithrstress/gaithrstress.c
84
(void)nanosleep(&slptime, NULL);
tools/tools/mctest/mctest.cc
389
if (nanosleep(&sleeptime, NULL) < 0) {
tools/tools/net80211/wesside/udps/udps.c
101
if (nanosleep(&ts, NULL) == -1) {
usr.bin/grdc/grdc.c
229
nanosleep(&delay, NULL);
usr.bin/script/script.c
629
(void)nanosleep(&tsi, NULL);
usr.bin/tip/libacu/courier.c
345
nanosleep(&ts, NULL);
usr.bin/tip/libacu/t3000.c
363
nanosleep(&ts, NULL);
usr.sbin/bhyve/snapshot.c
649
nanosleep(&ts, NULL);
usr.sbin/cron/cron/cron.c
434
rval = nanosleep(&stime, &remtime);