HomeSort by: relevance | last modified time | path
    Searched refs:timerfd_create (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/sys/
timerfd.h 40 * Definitions for timerfd_create(2) / timerfd_gettime(2) / timerfd_settime(2).
60 int timerfd_create(clockid_t, int);
  /src/tests/lib/libc/sys/
t_timerfd.c 123 ATF_TC(timerfd_create);
124 ATF_TC_HEAD(timerfd_create, tc)
126 atf_tc_set_md_var(tc, "descr", "validates timerfd_create()");
128 ATF_TC_BODY(timerfd_create, tc)
132 ATF_REQUIRE((fd = timerfd_create(CLOCK_REALTIME, 0)) >= 0);
135 ATF_REQUIRE((fd = timerfd_create(CLOCK_MONOTONIC, 0)) >= 0);
139 (fd = timerfd_create(CLOCK_VIRTUAL, 0)) == -1);
142 (fd = timerfd_create(CLOCK_PROF, 0)) == -1);
145 (fd = timerfd_create(CLOCK_REALTIME,
162 RL(fd = timerfd_create(CLOCK_REALTIME, 0))
    [all...]
  /src/sys/kern/
sys_timerfd.c 40 * created with the timerfd_create(2) system call, similar to timer_create(2).
152 * timerfd_create:
157 timerfd_create(clockid_t const clock_id, int const flags) function in typeref:struct:timerfd *
488 * timerfd_create(2) system call
521 fp->f_timerfd = timerfd_create(clock_id, flags);
  /src/lib/libc/sys/
Makefile.inc 161 timerfd_create.S timerfd_gettime.S timerfd_settime.S \
396 MLINKS+=timerfd.2 timerfd_create.2 \

Completed in 44 milliseconds