Home
last modified time | relevance | path

Searched refs:PTW32_RWLOCK_MAGIC (Results 1 – 10 of 10) sorted by relevance

/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
Dpthread_rwlock_unlock.c63 if (rwl->nMagic != PTW32_RWLOCK_MAGIC) in pthread_rwlock_unlock()
Dpthread_rwlock_tryrdlock.c71 if (rwl->nMagic != PTW32_RWLOCK_MAGIC) in pthread_rwlock_tryrdlock()
Dpthread_rwlock_rdlock.c71 if (rwl->nMagic != PTW32_RWLOCK_MAGIC) in pthread_rwlock_rdlock()
Dpthread_rwlock_timedrdlock.c72 if (rwl->nMagic != PTW32_RWLOCK_MAGIC) in pthread_rwlock_timedrdlock()
Dpthread_rwlock_trywrlock.c71 if (rwl->nMagic != PTW32_RWLOCK_MAGIC) in pthread_rwlock_trywrlock()
Dpthread_rwlock_init.c90 rwl->nMagic = PTW32_RWLOCK_MAGIC; in pthread_rwlock_init()
Dpthread_rwlock_wrlock.c71 if (rwl->nMagic != PTW32_RWLOCK_MAGIC) in pthread_rwlock_wrlock()
Dpthread_rwlock_timedwrlock.c72 if (rwl->nMagic != PTW32_RWLOCK_MAGIC) in pthread_rwlock_timedwrlock()
Dpthread_rwlock_destroy.c57 if (rwl->nMagic != PTW32_RWLOCK_MAGIC) in pthread_rwlock_destroy()
Dimplement.h383 #define PTW32_RWLOCK_MAGIC 0xfacade2 macro