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

  /bionic/libc/arch-arm/syscalls/
futex.S 6 ENTRY(futex) function
18 END(futex)
  /bionic/libc/arch-mips/syscalls/
futex.S 4 .globl futex
6 .ent futex
8 futex: label
22 .end futex
  /bionic/libc/arch-x86/syscalls/
futex.S 6 ENTRY(futex) function
36 END(futex)
  /art/runtime/base/
mutex-inl.h 34 #include "linux/futex.h"
39 static inline int futex(volatile int *uaddr, int op, int val, const struct timespec *timeout, volatile int *uaddr2, int val3) { function in namespace:art
147 if (futex(&state_, FUTEX_WAIT, cur_state, NULL, NULL, 0) != 0) {
149 PLOG(FATAL) << "futex wait failed for " << name_;
176 futex(&state_, FUTEX_WAKE, -1, NULL, NULL, 0);
  /external/valgrind/main/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);
87 VG_(memset)((void*)p->futex, 0, sizeof(p->futex));
91 INNER_REQUEST(ANNOTATE_BENIGN_RACE_SIZED(&p->futex, sizeof(p->futex), ""));
109 * ticket value. The futex used to wait depends on the ticket value in order
120 volatile unsigned *futex; local
164 volatile unsigned *futex; local
    [all...]

Completed in 670 milliseconds