HomeSort by relevance Sort by last modified time
    Searched defs:futex (Results 1 - 3 of 3) sorted by null

  /art/runtime/base/
mutex-inl.h 31 #include "linux/futex.h"
43 static inline int futex(volatile int *uaddr, int op, int val, const struct timespec *timeout, function in namespace:art
166 futex(state_.Address(), FUTEX_WAKE, -1, nullptr, nullptr, 0);
  /external/valgrind/coregrind/m_scheduler/
ticket-lock-linux.c 61 volatile unsigned futex[TL_FUTEX_COUNT]; member in struct:sched_lock
82 // The futex syscall requires that a futex takes four bytes.
83 vg_assert(sizeof(p->futex[0]) == 4);
88 INNER_REQUEST(ANNOTATE_BENIGN_RACE_SIZED(&p->futex, sizeof(p->futex), ""));
106 * ticket value. The futex used to wait depends on the ticket value in order
117 volatile unsigned *futex; local
121 futex = &p->futex[ticket & TL_FUTEX_MASK]
161 volatile unsigned *futex; local
    [all...]
  /cts/tests/tests/security/jni/
android_security_cts_NativeCodeTest.cpp 18 #include <linux/futex.h>
185 * Test for vulnerability to CVE-2014-3153, a bug in the futex() syscall that can
193 int futex = 1; local
197 * that's what we're checking for - they're both &futex. Patched systems will
200 ret = futex_syscall(&futex, FUTEX_CMP_REQUEUE_PI, 1, NULL, &futex, 0);

Completed in 1868 milliseconds