HomeSort by: relevance | last modified time | path
    Searched defs:SYS_futex (Results 1 - 7 of 7) sorted by relevancy

  /src/external/gpl3/gcc/dist/libgomp/config/linux/alpha/
futex.h 28 #ifndef SYS_futex
29 #define SYS_futex 394
42 sc_0 = SYS_futex;
56 sc_0 = SYS_futex;
77 sc_0 = SYS_futex;
90 sc_0 = SYS_futex;
  /src/external/gpl3/gcc.old/dist/libgomp/config/linux/alpha/
futex.h 28 #ifndef SYS_futex
29 #define SYS_futex 394
42 sc_0 = SYS_futex;
56 sc_0 = SYS_futex;
77 sc_0 = SYS_futex;
90 sc_0 = SYS_futex;
  /src/external/gpl3/gcc/dist/libgomp/config/linux/mips/
futex.h 30 #if !defined (SYS_futex)
31 #define SYS_futex __NR_futex
56 "IK" (SYS_futex)
  /src/external/gpl3/gcc.old/dist/libgomp/config/linux/mips/
futex.h 30 #if !defined (SYS_futex)
31 #define SYS_futex __NR_futex
56 "IK" (SYS_futex)
  /src/external/gpl3/gcc/dist/libgomp/config/linux/x86/
futex.h 29 # ifndef SYS_futex
30 # define SYS_futex 202
41 : "0" (SYS_futex), "D" (addr), "S" (futex_op),
54 : "0" (SYS_futex), "D" (addr), "S" (futex_op),
60 # ifndef SYS_futex
61 # define SYS_futex 240
72 : "0" (SYS_futex), "b" (addr), "c" (futex_op),
85 : "0" (SYS_futex), "b" (addr), "c" (futex_op),
  /src/external/gpl3/gcc.old/dist/libgomp/config/linux/x86/
futex.h 29 # ifndef SYS_futex
30 # define SYS_futex 202
41 : "0" (SYS_futex), "D" (addr), "S" (futex_op),
54 : "0" (SYS_futex), "D" (addr), "S" (futex_op),
60 # ifndef SYS_futex
61 # define SYS_futex 240
72 : "0" (SYS_futex), "b" (addr), "c" (futex_op),
85 : "0" (SYS_futex), "b" (addr), "c" (futex_op),
  /src/external/apache2/llvm/dist/libcxx/src/
atomic.cpp 22 // libc++ uses SYS_futex as a universal syscall name. However, on 32 bit architectures
24 #if !defined(SYS_futex) && defined(SYS_futex_time64)
25 # define SYS_futex SYS_futex_time64
42 syscall(SYS_futex, __ptr, FUTEX_WAIT_PRIVATE, __val, &__timeout, 0, 0);
48 syscall(SYS_futex, __ptr, FUTEX_WAKE_PRIVATE, __notify_one ? 1 : INT_MAX, 0, 0, 0);

Completed in 30 milliseconds