/src/usr.bin/talk/ |
msgs.c | 70 setitimer(ITIMER_REAL, &itimer, (struct itimerval *)0); 80 setitimer(ITIMER_REAL, &itimer, (struct itimerval *)0);
|
invite.c | 91 setitimer(ITIMER_REAL, &itimer, (struct itimerval *)0);
|
/src/tests/lib/libc/sys/ |
t_getitimer.c | 59 atf_tc_set_md_var(tc, "descr", "getitimer(2) before setitimer(2)"); 69 * actually arming the timer with setitimer(2). 117 atf_tc_set_md_var(tc, "descr", "A basic test of setitimer(2)"); 132 ATF_REQUIRE(setitimer(ITIMER_REAL, &it, NULL) == 0); 136 * setitimer(2) and sleep(3) can be 150 atf_tc_set_md_var(tc, "descr", "Test errors from setitimer(2)" 159 ATF_REQUIRE_ERRNO(EINVAL, setitimer(-1, &it, &ot) == -1); 162 ATF_REQUIRE_ERRNO(EINVAL, setitimer(INT_MAX, &it, &ot) == -1); 165 ATF_REQUIRE_ERRNO(EFAULT, setitimer(ITIMER_REAL,(void*)-1, &ot) == -1); 171 atf_tc_set_md_var(tc, "descr", "Test old values from setitimer(2)") [all...] |
t_sigtimedwait.c | 86 ATF_REQUIRE(setitimer(ITIMER_REAL, &it, NULL) == 0);
|
/src/lib/libc/gen/ |
alarm.c | 61 if (setitimer(ITIMER_REAL, itp, &oitv) == -1)
|
ualarm.c | 67 if (setitimer(ITIMER_REAL, &new, &old) == 0)
|
/src/lib/libc/compat/sys/ |
compat_itimer.c | 48 __warn_references(setitimer, 49 "warning: reference to compatibility setitimer(); include <sys/time.h> to generate correct reference") 52 setitimer(int timerid, const struct itimerval50 * __restrict tim50,
|
/src/regress/sys/kern/ras/ras1/ |
ras1.c | 64 setitimer(ITIMER_VIRTUAL, &itv, NULL);
|
/src/regress/sys/kern/ras/ras2/ |
ras2.c | 80 setitimer(ITIMER_VIRTUAL, &itv, NULL);
|
/src/sys/compat/sys/ |
time.h | 49 int setitimer(int, const struct itimerval50 * __restrict,
|
/src/tests/kernel/ |
t_lock.c | 72 RL(setitimer(ITIMER_VIRTUAL, &itv, NULL));
|
/src/games/atc/ |
main.c | 189 (void)setitimer(ITIMER_REAL, &itv, NULL); 202 (void)setitimer(ITIMER_REAL, &itv, NULL); 215 (void)setitimer(ITIMER_REAL, &itv, NULL); 347 (void)setitimer(ITIMER_REAL, &itv, NULL);
|
/src/regress/sys/kern/ras/ras3/ |
ras3.c | 68 setitimer(ITIMER_VIRTUAL, &itv, NULL);
|
/src/tests/lib/libpthread/ |
t_sleep.c | 94 setitimer(ITIMER_REAL, &it, NULL);
|
t_once.c | 183 setitimer(ITIMER_REAL, &it, NULL); 195 setitimer(ITIMER_REAL, &it, NULL);
|
t_sem.c | 227 ATF_REQUIRE(setitimer(ITIMER_REAL, &timer, NULL) == 0);
|
t_thrd.c | 205 ATF_REQUIRE_EQ(setitimer(ITIMER_MONOTONIC, &timer, NULL), 0);
|
/src/tests/rump/rumpkern/h_client/ |
h_sigcli.c | 58 if (setitimer(ITIMER_REAL, &itv, NULL) == -1)
|
/src/usr.bin/tip/aculib/ |
courier.c | 350 if (setitimer(ITIMER_REAL, itp, &oitv) < 0) 363 (void)setitimer(ITIMER_REAL, itp, NULL); 372 (void)setitimer(ITIMER_REAL, &oitv, NULL);
|
t3000.c | 360 if (setitimer(ITIMER_REAL, itp, &oitv) < 0) 373 (void)setitimer(ITIMER_REAL, itp, NULL); 382 (void)setitimer(ITIMER_REAL, &oitv, NULL);
|
/src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/ |
FuzzerUtilPosix.cpp | 79 if (setitimer(ITIMER_REAL, &T, nullptr)) { 80 Printf("libFuzzer: setitimer failed with %d\n", errno);
|
/src/usr.sbin/altq/altqstat/ |
altqstat.c | 185 setitimer(ITIMER_REAL, &it, NULL);
|
/src/usr.sbin/rpc.pcnfsd/ |
pcnfsd_misc.c | 381 setitimer(ITIMER_REAL, &timer, NULL); 397 setitimer(ITIMER_REAL, &timer, NULL);
|
/src/usr.bin/lock/ |
lock.c | 245 if (setitimer(ITIMER_REAL, &ntimer, &otimer) == -1) 246 err(1, "setitimer failed");
|
/src/usr.bin/timeout/ |
timeout.c | 179 if (setitimer(ITIMER_REAL, &tim, NULL) == -1) 180 err(EX_OSERR, "setitimer()");
|