MCPcopy Create free account
hub / github.com/catboost/catboost / Futex

Function Futex

library/cpp/yt/threading/futex.cpp:18–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16namespace {
17
18int Futex(
19 int* uaddr,
20 int op,
21 int val,
22 const timespec* timeout,
23 int* uaddr2,
24 int val3)
25{
26 return ::syscall(SYS_futex, uaddr, op, val, timeout, uaddr2, val3);
27}
28
29} // namespace
30

Callers 2

FutexWaitFunction · 0.70
FutexWakeFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected