HomeSort by relevance Sort by last modified time
    Searched refs:interlock (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
pthread_spin_lock.c 64 PTW32_INTERLOCKED_COMPARE_EXCHANGE_LONG ((PTW32_INTERLOCKED_LONGPTR) &s->interlock,
70 if (s->interlock == PTW32_SPIN_LOCKED)
74 else if (s->interlock == PTW32_SPIN_USE_MUTEX)
pthread_spin_destroy.c 54 if (s->interlock == PTW32_SPIN_USE_MUTEX)
59 PTW32_INTERLOCKED_COMPARE_EXCHANGE_LONG ((PTW32_INTERLOCKED_LONGPTR) &s->interlock,
pthread_spin_unlock.c 59 PTW32_INTERLOCKED_COMPARE_EXCHANGE_LONG ((PTW32_INTERLOCKED_LONGPTR) &s->interlock,
pthread_spin_init.c 93 s->interlock = PTW32_SPIN_UNLOCKED;
106 s->interlock = PTW32_SPIN_USE_MUTEX;
pthread_spin_trylock.c 64 PTW32_INTERLOCKED_COMPARE_EXCHANGE_LONG ((PTW32_INTERLOCKED_LONGPTR) &s->interlock,
implement.h 282 * for the "interlock" element in a spinlock.
286 * If there is only one cpu then "interlock" is set equal to
288 * If the number of cpus is greater than 1 then "interlock"
291 * routines to attempt an InterlockedCompareExchange on "interlock"
304 long interlock; /* Locking element for multi-cpus. */ member in struct:pthread_spinlock_t_
    [all...]

Completed in 750 milliseconds