OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:timerfd_create
(Results
1 - 2
of
2
) sorted by relevancy
/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
488
*
timerfd_create
(2) system call
521
fp->f_timerfd =
timerfd_create
(clock_id, flags);
/src/tests/lib/libc/sys/
t_timerfd.c
123
ATF_TC(
timerfd_create
);
variable
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
...]
Completed in 14 milliseconds
Indexes created Sat Feb 21 08:20:20 UTC 2026