HomeSort by relevance Sort by last modified time
    Searched refs:pthread_spin_lock (Results 1 - 25 of 29) sorted by null

1 2

  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_spin_lock/
3-1.c 7 * Test pthread_spin_lock(pthread_spinlock_t *lock)
9 * The pthread_spin_lock() function may fail if:
55 if (pthread_spin_lock(&spinlock) != 0) {
66 rc = pthread_spin_lock(&spinlock);
1-2.c 7 * Test pthread_spin_lock(pthread_spinlock_t *lock)
11 * thread shall spin (that is, shall not return from the pthread_spin_lock())
47 rc = pthread_spin_lock(&spinlock);
86 if (pthread_spin_lock(&spinlock) != 0) {
3-2.c 7 * Test pthread_spin_lock(pthread_spinlock_t *lock)
60 rc = pthread_spin_lock(&spinlock);
63 * pthread_spin_lock() */
1-1.c 7 * Test pthread_spin_lock(pthread_spinlock_t *lock)
11 * thread shall spin (that is, shall not return from the pthread_spin_lock())
75 rc = pthread_spin_lock(&spinlock);
122 if (pthread_spin_lock(&spinlock) != 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_spin_destroy/
1-1.c 43 if (pthread_spin_lock(&spinlock) != 0) {
3-1.c 11 * (for example, while being used in a pthread_spin_lock()
64 if (pthread_spin_lock(&spinlock) != 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_spin_init/
1-1.c 52 if (pthread_spin_lock(&spinlock) != 0) {
4-1.c 11 * lock while it is in use (for example, while being used in a pthread_spin_lock()
75 if (pthread_spin_lock(&spinlock) != 0) {
2-1.c 89 if ((pthread_spin_lock(&(spinlock_data->spinlock))) != 0) {
90 printf("Error at pthread_spin_lock()\n");
2-2.c 97 if ((pthread_spin_lock(&(spinlock_data->spinlock))) != 0) {
98 printf("Error at pthread_spin_lock()\n");
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_spin_unlock/
1-2.c 10 * was locked via the pthread_spin_lock() or pthread_spin_trylock().
21 * 3. Create a child thread. The thread lock 'spinlock' with pthread_spin_lock()
50 rc = pthread_spin_lock(&spinlock);
86 if (pthread_spin_lock(&spinlock) != 0) {
1-1.c 10 * was locked via the pthread_spin_lock() or pthread_spin_trylock().
15 * 2. Main thread lock 'spinlock' with pthread_spin_lock(), should get the lock
81 if (pthread_spin_lock(&spinlock) != 0) {
3-1.c 53 rc = pthread_spin_lock(&spinlock);
  /bionic/libc/bionic/
pthread_spinlock.cpp 66 int pthread_spin_lock(pthread_spinlock_t* lock_interface) { function
  /external/valgrind/drd/tests/
pth_spinlock.c 27 pthread_spin_lock(&s_spinlock);
tsan_thread_wrappers_pthread.h 121 CHECK(0 == pthread_spin_lock(&mu_));
  /external/compiler-rt/lib/tsan/dd/
dd_interceptors.cc 78 INTERCEPTOR(int, pthread_spin_lock, pthread_spinlock_t *m) {
81 int res = REAL(pthread_spin_lock)(m);
302 INTERCEPT_FUNCTION(pthread_spin_lock);
  /bionic/libc/include/
pthread.h 222 int pthread_spin_lock(pthread_spinlock_t* _Nonnull) __INTRODUCED_IN(24);
  /external/compiler-rt/test/tsan/
deadlock_detector_stress_test.cc 69 void lock() { assert(0 == pthread_spin_lock(&mu_)); }
  /prebuilts/ndk/r10/sources/cxx-stl/stlport/stlport/stl/
_threads.h 328 inline void _M_acquire_lock() { pthread_spin_lock( &_M_lock ); }
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/stlport/stl/
_threads.h 328 inline void _M_acquire_lock() { pthread_spin_lock( &_M_lock ); }
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/stlport/stl/
_threads.h 328 inline void _M_acquire_lock() { pthread_spin_lock( &_M_lock ); }
  /external/compiler-rt/lib/tsan/rtl/
tsan_interceptors.cc     [all...]
  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_test_util_posix.cc 188 CHECK_EQ(pthread_spin_lock((pthread_spinlock_t*)mtx_), 0);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
pthread.h     [all...]

Completed in 1078 milliseconds

1 2