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

  /art/runtime/base/
mutex-inl.h 37 #include "linux/futex.h"
42 static inline int futex(volatile int *uaddr, int op, int val, const struct timespec *timeout, volatile int *uaddr2, int val3) { function in namespace:art
164 if (futex(state_.Address(), FUTEX_WAIT, cur_state, NULL, NULL, 0) != 0) {
166 PLOG(FATAL) << "futex wait failed for " << name_;
199 futex(state_.Address(), FUTEX_WAKE, -1, NULL, NULL, 0);
  /cts/tests/tests/security/jni/
android_security_cts_NativeCodeTest.cpp 18 #include <linux/futex.h>
266 * Test for vulnerability to CVE-2014-3153, a bug in the futex() syscall that can
274 int futex = 1; local
278 * that's what we're checking for - they're both &futex. Patched systems will
281 ret = futex_syscall(&futex, FUTEX_CMP_REQUEUE_PI, 1, NULL, &futex, 0);

Completed in 94 milliseconds