Blame SOURCES/valgrind-3.11.0-pthread_spin_destroy.patch

f096bf
commit c69445c1e07425e827ce936d7c416f7972b51aa2
f096bf
Author: iraisr <iraisr@a5019735-40e9-0310-863c-91ae7b9d1cf9>
f096bf
Date:   Tue Jan 12 20:31:15 2016 +0000
f096bf
f096bf
    Fix typo in Helgrind's wrapper of pthread_spin_destroy().
f096bf
    Patch provided by: Jason Dillaman <dillaman@redhat.com>.
f096bf
    Fixes BZ #357871.
f096bf
    
f096bf
    
f096bf
    git-svn-id: svn://svn.valgrind.org/valgrind/trunk@15756 a5019735-40e9-0310-863c-91ae7b9d1cf9
f096bf
f096bf
diff --git a/helgrind/hg_intercepts.c b/helgrind/hg_intercepts.c
f096bf
index fd53208..ff36e93 100644
f096bf
--- a/helgrind/hg_intercepts.c
f096bf
+++ b/helgrind/hg_intercepts.c
f096bf
@@ -1854,13 +1854,13 @@ static int pthread_spin_destroy_WRK(pthread_spinlock_t *lock)
f096bf
    return ret;
f096bf
 }
f096bf
 #if defined(VGO_linux)
f096bf
-   PTH_FUNC(int, pthreadZuspinZusdestroy, // pthread_spin_destroy
f096bf
+   PTH_FUNC(int, pthreadZuspinZudestroy, // pthread_spin_destroy
f096bf
             pthread_spinlock_t *lock) {
f096bf
       return pthread_spin_destroy_WRK(lock);
f096bf
    }
f096bf
 #elif defined(VGO_darwin)
f096bf
 #elif defined(VGO_solaris)
f096bf
-   PTH_FUNC(int, pthreadZuspinZusdestroy, // pthread_spin_destroy
f096bf
+   PTH_FUNC(int, pthreadZuspinZudestroy, // pthread_spin_destroy
f096bf
             pthread_spinlock_t *lock) {
f096bf
       return pthread_spin_destroy_WRK(lock);
f096bf
    }
f096bf
diff --git a/helgrind/tests/tc20_verifywrap.c b/helgrind/tests/tc20_verifywrap.c
f096bf
index f71c7f8..c110000 100644
f096bf
--- a/helgrind/tests/tc20_verifywrap.c
f096bf
+++ b/helgrind/tests/tc20_verifywrap.c
f096bf
@@ -29,6 +29,11 @@
f096bf
 #endif
f096bf
 #endif /* __sun__ */
f096bf
 
f096bf
+typedef union {
f096bf
+   pthread_spinlock_t spinlock;
f096bf
+   pthread_rwlock_t rwlock;
f096bf
+} spin_rw_lock;
f096bf
+
f096bf
 short unprotected = 0;
f096bf
 
f096bf
 void* lazy_child ( void* v ) {
f096bf
@@ -236,6 +241,20 @@ int main ( void )
f096bf
    r= pthread_rwlock_init( &rwl3, NULL ); assert(!r);
f096bf
    r= pthread_rwlock_rdlock( &rwl3 ); assert(!r);
f096bf
 
f096bf
+   /* --------- pthread_spin_* --------- */
f096bf
+
f096bf
+   fprintf(stderr,
f096bf
+   "\n---------------- pthread_spin_* ----------------\n\n");
f096bf
+
f096bf
+   /* The following sequence verifies correct wrapping of pthread_spin_init()
f096bf
+      and pthread_spin_destroy(). */
f096bf
+   spin_rw_lock srwl1;
f096bf
+   pthread_spin_init(&srwl1.spinlock, PTHREAD_PROCESS_PRIVATE);
f096bf
+   pthread_spin_destroy(&srwl1.spinlock);
f096bf
+
f096bf
+   pthread_rwlock_init(&srwl1.rwlock, NULL);
f096bf
+   pthread_rwlock_destroy(&srwl1.rwlock);
f096bf
+
f096bf
    /* ------------- sem_* ------------- */
f096bf
 
f096bf
    /* This is pretty lame, and duplicates tc18_semabuse.c. */
f096bf
diff --git a/helgrind/tests/tc20_verifywrap.stderr.exp b/helgrind/tests/tc20_verifywrap.stderr.exp
f096bf
index d9019d4..372daea 100644
f096bf
--- a/helgrind/tests/tc20_verifywrap.stderr.exp
f096bf
+++ b/helgrind/tests/tc20_verifywrap.stderr.exp
f096bf
@@ -14,21 +14,21 @@ Thread #x is the program's root thread
f096bf
 Thread #x was created
f096bf
    ...
f096bf
    by 0x........: pthread_create@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:81)
f096bf
+   by 0x........: main (tc20_verifywrap.c:86)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
 Possible data race during write of size 2 at 0x........ by thread #x
f096bf
 Locks held: none
f096bf
-   at 0x........: main (tc20_verifywrap.c:83)
f096bf
+   at 0x........: main (tc20_verifywrap.c:88)
f096bf
 
f096bf
 This conflicts with a previous write of size 2 by thread #x
f096bf
 Locks held: none
f096bf
-   at 0x........: racy_child (tc20_verifywrap.c:39)
f096bf
+   at 0x........: racy_child (tc20_verifywrap.c:44)
f096bf
    by 0x........: mythread_wrapper (hg_intercepts.c:...)
f096bf
    ...
f096bf
  Location 0x........ is 0 bytes inside global var "unprotected"
f096bf
- declared at tc20_verifywrap.c:32
f096bf
+ declared at tc20_verifywrap.c:37
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -36,7 +36,7 @@ Thread #x's call to pthread_join failed
f096bf
    with error code 35 (EDEADLK: Resource deadlock would occur)
f096bf
    at 0x........: pthread_join_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_join (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:88)
f096bf
+   by 0x........: main (tc20_verifywrap.c:93)
f096bf
 
f096bf
 
f096bf
 ---------------- pthread_mutex_lock et al ----------------
f096bf
@@ -46,14 +46,14 @@ Thread #x's call to pthread_join failed
f096bf
 Thread #x's call to pthread_mutex_init failed
f096bf
    with error code 95 (EOPNOTSUPP: Operation not supported on transport endpoint)
f096bf
    at 0x........: pthread_mutex_init (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:102)
f096bf
+   by 0x........: main (tc20_verifywrap.c:107)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
 Thread #x: pthread_mutex_destroy of a locked mutex
f096bf
    at 0x........: mutex_destroy_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_mutex_destroy (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:112)
f096bf
+   by 0x........: main (tc20_verifywrap.c:117)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -61,7 +61,7 @@ Thread #x's call to pthread_mutex_destroy failed
f096bf
    with error code 16 (EBUSY: Device or resource busy)
f096bf
    at 0x........: mutex_destroy_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_mutex_destroy (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:112)
f096bf
+   by 0x........: main (tc20_verifywrap.c:117)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -69,7 +69,7 @@ Thread #x's call to pthread_mutex_lock failed
f096bf
    with error code 22 (EINVAL: Invalid argument)
f096bf
    at 0x........: mutex_lock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_mutex_lock (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:118)
f096bf
+   by 0x........: main (tc20_verifywrap.c:123)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -77,7 +77,7 @@ Thread #x's call to pthread_mutex_trylock failed
f096bf
    with error code 22 (EINVAL: Invalid argument)
f096bf
    at 0x........: mutex_trylock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_mutex_trylock (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:126)
f096bf
+   by 0x........: main (tc20_verifywrap.c:131)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -85,14 +85,14 @@ Thread #x's call to pthread_mutex_timedlock failed
f096bf
    with error code 22 (EINVAL: Invalid argument)
f096bf
    at 0x........: mutex_timedlock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_mutex_timedlock (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:131)
f096bf
+   by 0x........: main (tc20_verifywrap.c:136)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
 Thread #x unlocked an invalid lock at 0x........
f096bf
    at 0x........: mutex_unlock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_mutex_unlock (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:135)
f096bf
+   by 0x........: main (tc20_verifywrap.c:140)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -100,7 +100,7 @@ Thread #x's call to pthread_mutex_unlock failed
f096bf
    with error code 22 (EINVAL: Invalid argument)
f096bf
    at 0x........: mutex_unlock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_mutex_unlock (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:135)
f096bf
+   by 0x........: main (tc20_verifywrap.c:140)
f096bf
 
f096bf
 
f096bf
 ---------------- pthread_cond_wait et al ----------------
f096bf
@@ -110,7 +110,7 @@ Thread #x's call to pthread_mutex_unlock failed
f096bf
 Thread #x: pthread_cond_{timed}wait called with un-held mutex
f096bf
    at 0x........: pthread_cond_wait_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_cond_wait@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:157)
f096bf
+   by 0x........: main (tc20_verifywrap.c:162)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -118,14 +118,14 @@ Thread #x's call to pthread_cond_wait failed
f096bf
    with error code 1 (EPERM: Operation not permitted)
f096bf
    at 0x........: pthread_cond_wait_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_cond_wait@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:157)
f096bf
+   by 0x........: main (tc20_verifywrap.c:162)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
 Thread #x: pthread_cond_{signal,broadcast}: dubious: associated lock is not held by any thread
f096bf
    at 0x........: pthread_cond_signal_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_cond_signal@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:162)
f096bf
+   by 0x........: main (tc20_verifywrap.c:167)
f096bf
 
f096bf
 
f096bf
 FIXME: can't figure out how to verify wrap of pthread_cond_signal
f096bf
@@ -135,7 +135,7 @@ FIXME: can't figure out how to verify wrap of pthread_cond_signal
f096bf
 Thread #x: pthread_cond_{signal,broadcast}: dubious: associated lock is not held by any thread
f096bf
    at 0x........: pthread_cond_broadcast_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_cond_broadcast@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:168)
f096bf
+   by 0x........: main (tc20_verifywrap.c:173)
f096bf
 
f096bf
 
f096bf
 FIXME: can't figure out how to verify wrap of pthread_broadcast_signal
f096bf
@@ -145,7 +145,7 @@ FIXME: can't figure out how to verify wrap of pthread_broadcast_signal
f096bf
 Thread #x: pthread_cond_{timed}wait called with un-held mutex
f096bf
    at 0x........: pthread_cond_timedwait_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_cond_timedwait@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:175)
f096bf
+   by 0x........: main (tc20_verifywrap.c:180)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -153,7 +153,7 @@ Thread #x's call to pthread_cond_timedwait failed
f096bf
    with error code 22 (EINVAL: Invalid argument)
f096bf
    at 0x........: pthread_cond_timedwait_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_cond_timedwait@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:175)
f096bf
+   by 0x........: main (tc20_verifywrap.c:180)
f096bf
 
f096bf
 
f096bf
 ---------------- pthread_rwlock_* ----------------
f096bf
@@ -164,13 +164,13 @@ Thread #x unlocked a not-locked lock at 0x........
f096bf
    at 0x........: pthread_rwlock_unlock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_rwlock_unlock (hg_intercepts.c:...)
f096bf
    ...
f096bf
-   by 0x........: main (tc20_verifywrap.c:189)
f096bf
+   by 0x........: main (tc20_verifywrap.c:194)
f096bf
  Lock at 0x........ was first observed
f096bf
    at 0x........: pthread_rwlock_init_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_rwlock_init (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:188)
f096bf
+   by 0x........: main (tc20_verifywrap.c:193)
f096bf
  Location 0x........ is 0 bytes inside local var "rwl"
f096bf
- declared at tc20_verifywrap.c:52, in frame #x of thread x
f096bf
+ declared at tc20_verifywrap.c:57, in frame #x of thread x
f096bf
 
f096bf
 
f096bf
 (1) no error on next line
f096bf
@@ -182,13 +182,13 @@ Thread #x unlocked a not-locked lock at 0x........
f096bf
    at 0x........: pthread_rwlock_unlock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_rwlock_unlock (hg_intercepts.c:...)
f096bf
    ...
f096bf
-   by 0x........: main (tc20_verifywrap.c:206)
f096bf
+   by 0x........: main (tc20_verifywrap.c:211)
f096bf
  Lock at 0x........ was first observed
f096bf
    at 0x........: pthread_rwlock_init_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_rwlock_init (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:196)
f096bf
+   by 0x........: main (tc20_verifywrap.c:201)
f096bf
  Location 0x........ is 0 bytes inside local var "rwl2"
f096bf
- declared at tc20_verifywrap.c:53, in frame #x of thread x
f096bf
+ declared at tc20_verifywrap.c:58, in frame #x of thread x
f096bf
 
f096bf
 
f096bf
 (4) no error on next line
f096bf
@@ -202,14 +202,17 @@ Thread #x unlocked a not-locked lock at 0x........
f096bf
    at 0x........: pthread_rwlock_unlock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_rwlock_unlock (hg_intercepts.c:...)
f096bf
    ...
f096bf
-   by 0x........: main (tc20_verifywrap.c:227)
f096bf
+   by 0x........: main (tc20_verifywrap.c:232)
f096bf
  Lock at 0x........ was first observed
f096bf
    at 0x........: pthread_rwlock_init_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_rwlock_init (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:196)
f096bf
+   by 0x........: main (tc20_verifywrap.c:201)
f096bf
  Location 0x........ is 0 bytes inside local var "rwl2"
f096bf
- declared at tc20_verifywrap.c:53, in frame #x of thread x
f096bf
+ declared at tc20_verifywrap.c:58, in frame #x of thread x
f096bf
+
f096bf
+
f096bf
 
f096bf
+---------------- pthread_spin_* ----------------
f096bf
 
f096bf
 
f096bf
 ---------------- sem_* ----------------
f096bf
@@ -220,7 +223,7 @@ Thread #x's call to sem_init failed
f096bf
    with error code 22 (EINVAL: Invalid argument)
f096bf
    at 0x........: sem_init_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: sem_init@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:248)
f096bf
+   by 0x........: main (tc20_verifywrap.c:267)
f096bf
 
f096bf
 
f096bf
 FIXME: can't figure out how to verify wrap of sem_destroy
f096bf
@@ -230,7 +233,7 @@ FIXME: can't figure out how to verify wrap of sem_destroy
f096bf
 Thread #x: Bug in libpthread: sem_wait succeeded on semaphore without prior sem_post
f096bf
    at 0x........: sem_wait_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: sem_wait (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:262)
f096bf
+   by 0x........: main (tc20_verifywrap.c:281)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -239,7 +242,7 @@ Thread #x's call to sem_post failed
f096bf
    at 0x........: sem_post_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: sem_post (hg_intercepts.c:...)
f096bf
    ...
f096bf
-   by 0x........: main (tc20_verifywrap.c:265)
f096bf
+   by 0x........: main (tc20_verifywrap.c:284)
f096bf
 
f096bf
 
f096bf
 FIXME: can't figure out how to verify wrap of sem_post
f096bf
diff --git a/helgrind/tests/tc20_verifywrap.stderr.exp-glibc-2.18 b/helgrind/tests/tc20_verifywrap.stderr.exp-glibc-2.18
f096bf
index f109673..b823d40 100644
f096bf
--- a/helgrind/tests/tc20_verifywrap.stderr.exp-glibc-2.18
f096bf
+++ b/helgrind/tests/tc20_verifywrap.stderr.exp-glibc-2.18
f096bf
@@ -14,21 +14,21 @@ Thread #x is the program's root thread
f096bf
 Thread #x was created
f096bf
    ...
f096bf
    by 0x........: pthread_create@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:81)
f096bf
+   by 0x........: main (tc20_verifywrap.c:86)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
 Possible data race during write of size 2 at 0x........ by thread #x
f096bf
 Locks held: none
f096bf
-   at 0x........: main (tc20_verifywrap.c:83)
f096bf
+   at 0x........: main (tc20_verifywrap.c:88)
f096bf
 
f096bf
 This conflicts with a previous write of size 2 by thread #x
f096bf
 Locks held: none
f096bf
-   at 0x........: racy_child (tc20_verifywrap.c:39)
f096bf
+   at 0x........: racy_child (tc20_verifywrap.c:44)
f096bf
    by 0x........: mythread_wrapper (hg_intercepts.c:...)
f096bf
    ...
f096bf
  Location 0x........ is 0 bytes inside global var "unprotected"
f096bf
- declared at tc20_verifywrap.c:32
f096bf
+ declared at tc20_verifywrap.c:37
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -36,7 +36,7 @@ Thread #x's call to pthread_join failed
f096bf
    with error code 35 (EDEADLK: Resource deadlock would occur)
f096bf
    at 0x........: pthread_join_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_join (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:88)
f096bf
+   by 0x........: main (tc20_verifywrap.c:93)
f096bf
 
f096bf
 
f096bf
 ---------------- pthread_mutex_lock et al ----------------
f096bf
@@ -46,14 +46,14 @@ Thread #x's call to pthread_join failed
f096bf
 Thread #x's call to pthread_mutex_init failed
f096bf
    with error code 95 (EOPNOTSUPP: Operation not supported on transport endpoint)
f096bf
    at 0x........: pthread_mutex_init (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:102)
f096bf
+   by 0x........: main (tc20_verifywrap.c:107)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
 Thread #x: pthread_mutex_destroy of a locked mutex
f096bf
    at 0x........: mutex_destroy_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_mutex_destroy (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:112)
f096bf
+   by 0x........: main (tc20_verifywrap.c:117)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -61,7 +61,7 @@ Thread #x's call to pthread_mutex_lock failed
f096bf
    with error code 22 (EINVAL: Invalid argument)
f096bf
    at 0x........: mutex_lock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_mutex_lock (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:118)
f096bf
+   by 0x........: main (tc20_verifywrap.c:123)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -69,7 +69,7 @@ Thread #x's call to pthread_mutex_trylock failed
f096bf
    with error code 22 (EINVAL: Invalid argument)
f096bf
    at 0x........: mutex_trylock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_mutex_trylock (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:126)
f096bf
+   by 0x........: main (tc20_verifywrap.c:131)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -77,14 +77,14 @@ Thread #x's call to pthread_mutex_timedlock failed
f096bf
    with error code 22 (EINVAL: Invalid argument)
f096bf
    at 0x........: mutex_timedlock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_mutex_timedlock (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:131)
f096bf
+   by 0x........: main (tc20_verifywrap.c:136)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
 Thread #x unlocked an invalid lock at 0x........
f096bf
    at 0x........: mutex_unlock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_mutex_unlock (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:135)
f096bf
+   by 0x........: main (tc20_verifywrap.c:140)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -92,7 +92,7 @@ Thread #x's call to pthread_mutex_unlock failed
f096bf
    with error code 22 (EINVAL: Invalid argument)
f096bf
    at 0x........: mutex_unlock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_mutex_unlock (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:135)
f096bf
+   by 0x........: main (tc20_verifywrap.c:140)
f096bf
 
f096bf
 
f096bf
 ---------------- pthread_cond_wait et al ----------------
f096bf
@@ -102,7 +102,7 @@ Thread #x's call to pthread_mutex_unlock failed
f096bf
 Thread #x: pthread_cond_{timed}wait called with un-held mutex
f096bf
    at 0x........: pthread_cond_wait_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_cond_wait@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:157)
f096bf
+   by 0x........: main (tc20_verifywrap.c:162)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -110,14 +110,14 @@ Thread #x's call to pthread_cond_wait failed
f096bf
    with error code 1 (EPERM: Operation not permitted)
f096bf
    at 0x........: pthread_cond_wait_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_cond_wait@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:157)
f096bf
+   by 0x........: main (tc20_verifywrap.c:162)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
 Thread #x: pthread_cond_{signal,broadcast}: dubious: associated lock is not held by any thread
f096bf
    at 0x........: pthread_cond_signal_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_cond_signal@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:162)
f096bf
+   by 0x........: main (tc20_verifywrap.c:167)
f096bf
 
f096bf
 
f096bf
 FIXME: can't figure out how to verify wrap of pthread_cond_signal
f096bf
@@ -127,7 +127,7 @@ FIXME: can't figure out how to verify wrap of pthread_cond_signal
f096bf
 Thread #x: pthread_cond_{signal,broadcast}: dubious: associated lock is not held by any thread
f096bf
    at 0x........: pthread_cond_broadcast_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_cond_broadcast@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:168)
f096bf
+   by 0x........: main (tc20_verifywrap.c:173)
f096bf
 
f096bf
 
f096bf
 FIXME: can't figure out how to verify wrap of pthread_broadcast_signal
f096bf
@@ -137,7 +137,7 @@ FIXME: can't figure out how to verify wrap of pthread_broadcast_signal
f096bf
 Thread #x: pthread_cond_{timed}wait called with un-held mutex
f096bf
    at 0x........: pthread_cond_timedwait_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_cond_timedwait@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:175)
f096bf
+   by 0x........: main (tc20_verifywrap.c:180)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -145,7 +145,7 @@ Thread #x's call to pthread_cond_timedwait failed
f096bf
    with error code 22 (EINVAL: Invalid argument)
f096bf
    at 0x........: pthread_cond_timedwait_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_cond_timedwait@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:175)
f096bf
+   by 0x........: main (tc20_verifywrap.c:180)
f096bf
 
f096bf
 
f096bf
 ---------------- pthread_rwlock_* ----------------
f096bf
@@ -156,11 +156,11 @@ Thread #x unlocked a not-locked lock at 0x........
f096bf
    at 0x........: pthread_rwlock_unlock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_rwlock_unlock (hg_intercepts.c:...)
f096bf
    ...
f096bf
-   by 0x........: main (tc20_verifywrap.c:189)
f096bf
+   by 0x........: main (tc20_verifywrap.c:194)
f096bf
   Lock at 0x........ was first observed
f096bf
    at 0x........: pthread_rwlock_init_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_rwlock_init (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:188)
f096bf
+   by 0x........: main (tc20_verifywrap.c:193)
f096bf
 
f096bf
 (1) no error on next line
f096bf
 (2) no error on next line
f096bf
@@ -171,11 +171,11 @@ Thread #x unlocked a not-locked lock at 0x........
f096bf
    at 0x........: pthread_rwlock_unlock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_rwlock_unlock (hg_intercepts.c:...)
f096bf
    ...
f096bf
-   by 0x........: main (tc20_verifywrap.c:206)
f096bf
+   by 0x........: main (tc20_verifywrap.c:211)
f096bf
   Lock at 0x........ was first observed
f096bf
    at 0x........: pthread_rwlock_init_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_rwlock_init (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:196)
f096bf
+   by 0x........: main (tc20_verifywrap.c:201)
f096bf
 
f096bf
 (4) no error on next line
f096bf
 (5) no error on next line
f096bf
@@ -187,11 +187,15 @@ Thread #x unlocked a not-locked lock at 0x........
f096bf
 Thread #x unlocked a not-locked lock at 0x........
f096bf
    at 0x........: pthread_rwlock_unlock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_rwlock_unlock (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:227)
f096bf
+   by 0x........: main (tc20_verifywrap.c:232)
f096bf
   Lock at 0x........ was first observed
f096bf
    at 0x........: pthread_rwlock_init_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_rwlock_init (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:196)
f096bf
+   by 0x........: main (tc20_verifywrap.c:201)
f096bf
+
f096bf
+
f096bf
+
f096bf
+---------------- pthread_spin_* ----------------
f096bf
 
f096bf
 
f096bf
 ---------------- sem_* ----------------
f096bf
@@ -202,7 +206,7 @@ Thread #x's call to sem_init failed
f096bf
    with error code 22 (EINVAL: Invalid argument)
f096bf
    at 0x........: sem_init_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: sem_init@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:243)
f096bf
+   by 0x........: main (tc20_verifywrap.c:267)
f096bf
 
f096bf
 
f096bf
 FIXME: can't figure out how to verify wrap of sem_destroy
f096bf
@@ -212,7 +216,7 @@ FIXME: can't figure out how to verify wrap of sem_destroy
f096bf
 Thread #x: Bug in libpthread: sem_wait succeeded on semaphore without prior sem_post
f096bf
    at 0x........: sem_wait_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: sem_wait (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:257)
f096bf
+   by 0x........: main (tc20_verifywrap.c:281)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -220,7 +224,7 @@ Thread #x's call to sem_post failed
f096bf
    with error code 22 (EINVAL: Invalid argument)
f096bf
    at 0x........: sem_post_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: sem_post (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:260)
f096bf
+   by 0x........: main (tc20_verifywrap.c:284)
f096bf
 
f096bf
 
f096bf
 FIXME: can't figure out how to verify wrap of sem_post
f096bf
diff --git a/helgrind/tests/tc20_verifywrap.stderr.exp-glibc-2.21 b/helgrind/tests/tc20_verifywrap.stderr.exp-glibc-2.21
f096bf
index 7f4eb21..2a2ee9b 100644
f096bf
--- a/helgrind/tests/tc20_verifywrap.stderr.exp-glibc-2.21
f096bf
+++ b/helgrind/tests/tc20_verifywrap.stderr.exp-glibc-2.21
f096bf
@@ -14,21 +14,21 @@ Thread #x is the program's root thread
f096bf
 Thread #x was created
f096bf
    ...
f096bf
    by 0x........: pthread_create@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:81)
f096bf
+   by 0x........: main (tc20_verifywrap.c:86)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
 Possible data race during write of size 2 at 0x........ by thread #x
f096bf
 Locks held: none
f096bf
-   at 0x........: main (tc20_verifywrap.c:83)
f096bf
+   at 0x........: main (tc20_verifywrap.c:88)
f096bf
 
f096bf
 This conflicts with a previous write of size 2 by thread #x
f096bf
 Locks held: none
f096bf
-   at 0x........: racy_child (tc20_verifywrap.c:39)
f096bf
+   at 0x........: racy_child (tc20_verifywrap.c:44)
f096bf
    by 0x........: mythread_wrapper (hg_intercepts.c:...)
f096bf
    ...
f096bf
  Location 0x........ is 0 bytes inside global var "unprotected"
f096bf
- declared at tc20_verifywrap.c:32
f096bf
+ declared at tc20_verifywrap.c:37
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -36,7 +36,7 @@ Thread #x's call to pthread_join failed
f096bf
    with error code 35 (EDEADLK: Resource deadlock would occur)
f096bf
    at 0x........: pthread_join_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_join (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:88)
f096bf
+   by 0x........: main (tc20_verifywrap.c:93)
f096bf
 
f096bf
 
f096bf
 ---------------- pthread_mutex_lock et al ----------------
f096bf
@@ -46,14 +46,14 @@ Thread #x's call to pthread_join failed
f096bf
 Thread #x's call to pthread_mutex_init failed
f096bf
    with error code 95 (EOPNOTSUPP: Operation not supported on transport endpoint)
f096bf
    at 0x........: pthread_mutex_init (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:102)
f096bf
+   by 0x........: main (tc20_verifywrap.c:107)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
 Thread #x: pthread_mutex_destroy of a locked mutex
f096bf
    at 0x........: mutex_destroy_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_mutex_destroy (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:112)
f096bf
+   by 0x........: main (tc20_verifywrap.c:117)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -61,7 +61,7 @@ Thread #x's call to pthread_mutex_destroy failed
f096bf
    with error code 16 (EBUSY: Device or resource busy)
f096bf
    at 0x........: mutex_destroy_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_mutex_destroy (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:112)
f096bf
+   by 0x........: main (tc20_verifywrap.c:117)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -69,7 +69,7 @@ Thread #x's call to pthread_mutex_lock failed
f096bf
    with error code 22 (EINVAL: Invalid argument)
f096bf
    at 0x........: mutex_lock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_mutex_lock (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:118)
f096bf
+   by 0x........: main (tc20_verifywrap.c:123)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -77,7 +77,7 @@ Thread #x's call to pthread_mutex_trylock failed
f096bf
    with error code 22 (EINVAL: Invalid argument)
f096bf
    at 0x........: mutex_trylock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_mutex_trylock (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:126)
f096bf
+   by 0x........: main (tc20_verifywrap.c:131)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -85,14 +85,14 @@ Thread #x's call to pthread_mutex_timedlock failed
f096bf
    with error code 22 (EINVAL: Invalid argument)
f096bf
    at 0x........: mutex_timedlock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_mutex_timedlock (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:131)
f096bf
+   by 0x........: main (tc20_verifywrap.c:136)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
 Thread #x unlocked an invalid lock at 0x........
f096bf
    at 0x........: mutex_unlock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_mutex_unlock (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:135)
f096bf
+   by 0x........: main (tc20_verifywrap.c:140)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -100,7 +100,7 @@ Thread #x's call to pthread_mutex_unlock failed
f096bf
    with error code 22 (EINVAL: Invalid argument)
f096bf
    at 0x........: mutex_unlock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_mutex_unlock (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:135)
f096bf
+   by 0x........: main (tc20_verifywrap.c:140)
f096bf
 
f096bf
 
f096bf
 ---------------- pthread_cond_wait et al ----------------
f096bf
@@ -110,7 +110,7 @@ Thread #x's call to pthread_mutex_unlock failed
f096bf
 Thread #x: pthread_cond_{timed}wait called with un-held mutex
f096bf
    at 0x........: pthread_cond_wait_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_cond_wait@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:157)
f096bf
+   by 0x........: main (tc20_verifywrap.c:162)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -118,14 +118,14 @@ Thread #x's call to pthread_cond_wait failed
f096bf
    with error code 1 (EPERM: Operation not permitted)
f096bf
    at 0x........: pthread_cond_wait_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_cond_wait@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:157)
f096bf
+   by 0x........: main (tc20_verifywrap.c:162)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
 Thread #x: pthread_cond_{signal,broadcast}: dubious: associated lock is not held by any thread
f096bf
    at 0x........: pthread_cond_signal_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_cond_signal@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:162)
f096bf
+   by 0x........: main (tc20_verifywrap.c:167)
f096bf
 
f096bf
 
f096bf
 FIXME: can't figure out how to verify wrap of pthread_cond_signal
f096bf
@@ -135,7 +135,7 @@ FIXME: can't figure out how to verify wrap of pthread_cond_signal
f096bf
 Thread #x: pthread_cond_{signal,broadcast}: dubious: associated lock is not held by any thread
f096bf
    at 0x........: pthread_cond_broadcast_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_cond_broadcast@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:168)
f096bf
+   by 0x........: main (tc20_verifywrap.c:173)
f096bf
 
f096bf
 
f096bf
 FIXME: can't figure out how to verify wrap of pthread_broadcast_signal
f096bf
@@ -145,7 +145,7 @@ FIXME: can't figure out how to verify wrap of pthread_broadcast_signal
f096bf
 Thread #x: pthread_cond_{timed}wait called with un-held mutex
f096bf
    at 0x........: pthread_cond_timedwait_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_cond_timedwait@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:175)
f096bf
+   by 0x........: main (tc20_verifywrap.c:180)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -153,7 +153,7 @@ Thread #x's call to pthread_cond_timedwait failed
f096bf
    with error code 22 (EINVAL: Invalid argument)
f096bf
    at 0x........: pthread_cond_timedwait_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_cond_timedwait@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:175)
f096bf
+   by 0x........: main (tc20_verifywrap.c:180)
f096bf
 
f096bf
 
f096bf
 ---------------- pthread_rwlock_* ----------------
f096bf
@@ -164,13 +164,13 @@ Thread #x unlocked a not-locked lock at 0x........
f096bf
    at 0x........: pthread_rwlock_unlock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_rwlock_unlock (hg_intercepts.c:...)
f096bf
    ...
f096bf
-   by 0x........: main (tc20_verifywrap.c:189)
f096bf
+   by 0x........: main (tc20_verifywrap.c:194)
f096bf
  Lock at 0x........ was first observed
f096bf
    at 0x........: pthread_rwlock_init_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_rwlock_init (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:188)
f096bf
+   by 0x........: main (tc20_verifywrap.c:193)
f096bf
  Location 0x........ is 0 bytes inside local var "rwl"
f096bf
- declared at tc20_verifywrap.c:52, in frame #x of thread x
f096bf
+ declared at tc20_verifywrap.c:57, in frame #x of thread x
f096bf
 
f096bf
 
f096bf
 (1) no error on next line
f096bf
@@ -182,13 +182,13 @@ Thread #x unlocked a not-locked lock at 0x........
f096bf
    at 0x........: pthread_rwlock_unlock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_rwlock_unlock (hg_intercepts.c:...)
f096bf
    ...
f096bf
-   by 0x........: main (tc20_verifywrap.c:206)
f096bf
+   by 0x........: main (tc20_verifywrap.c:211)
f096bf
  Lock at 0x........ was first observed
f096bf
    at 0x........: pthread_rwlock_init_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_rwlock_init (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:196)
f096bf
+   by 0x........: main (tc20_verifywrap.c:201)
f096bf
  Location 0x........ is 0 bytes inside local var "rwl2"
f096bf
- declared at tc20_verifywrap.c:53, in frame #x of thread x
f096bf
+ declared at tc20_verifywrap.c:58, in frame #x of thread x
f096bf
 
f096bf
 
f096bf
 (4) no error on next line
f096bf
@@ -202,14 +202,17 @@ Thread #x unlocked a not-locked lock at 0x........
f096bf
    at 0x........: pthread_rwlock_unlock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_rwlock_unlock (hg_intercepts.c:...)
f096bf
    ...
f096bf
-   by 0x........: main (tc20_verifywrap.c:227)
f096bf
+   by 0x........: main (tc20_verifywrap.c:232)
f096bf
  Lock at 0x........ was first observed
f096bf
    at 0x........: pthread_rwlock_init_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_rwlock_init (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:196)
f096bf
+   by 0x........: main (tc20_verifywrap.c:201)
f096bf
  Location 0x........ is 0 bytes inside local var "rwl2"
f096bf
- declared at tc20_verifywrap.c:53, in frame #x of thread x
f096bf
+ declared at tc20_verifywrap.c:58, in frame #x of thread x
f096bf
+
f096bf
+
f096bf
 
f096bf
+---------------- pthread_spin_* ----------------
f096bf
 
f096bf
 
f096bf
 ---------------- sem_* ----------------
f096bf
@@ -220,7 +223,7 @@ Thread #x's call to sem_init failed
f096bf
    with error code 22 (EINVAL: Invalid argument)
f096bf
    at 0x........: sem_init_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: sem_init@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:248)
f096bf
+   by 0x........: main (tc20_verifywrap.c:267)
f096bf
 
f096bf
 
f096bf
 FIXME: can't figure out how to verify wrap of sem_destroy
f096bf
@@ -230,7 +233,7 @@ FIXME: can't figure out how to verify wrap of sem_destroy
f096bf
 Thread #x: Bug in libpthread: sem_wait succeeded on semaphore without prior sem_post
f096bf
    at 0x........: sem_wait_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: sem_wait (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:262)
f096bf
+   by 0x........: main (tc20_verifywrap.c:281)
f096bf
 
f096bf
 
f096bf
 FIXME: can't figure out how to verify wrap of sem_post
f096bf
diff --git a/helgrind/tests/tc20_verifywrap.stderr.exp-s390x b/helgrind/tests/tc20_verifywrap.stderr.exp-s390x
f096bf
index 3f60f79..f19215e 100644
f096bf
--- a/helgrind/tests/tc20_verifywrap.stderr.exp-s390x
f096bf
+++ b/helgrind/tests/tc20_verifywrap.stderr.exp-s390x
f096bf
@@ -15,22 +15,22 @@ Thread #x was created
f096bf
    ...
f096bf
    by 0x........: pthread_create_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_create@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:81)
f096bf
+   by 0x........: main (tc20_verifywrap.c:86)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
 Possible data race during write of size 2 at 0x........ by thread #x
f096bf
 Locks held: none
f096bf
-   at 0x........: main (tc20_verifywrap.c:83)
f096bf
+   at 0x........: main (tc20_verifywrap.c:88)
f096bf
 
f096bf
 This conflicts with a previous write of size 2 by thread #x
f096bf
 Locks held: none
f096bf
-   at 0x........: racy_child (tc20_verifywrap.c:39)
f096bf
+   at 0x........: racy_child (tc20_verifywrap.c:44)
f096bf
    by 0x........: mythread_wrapper (hg_intercepts.c:...)
f096bf
    ...
f096bf
 
f096bf
 Location 0x........ is 0 bytes inside global var "unprotected"
f096bf
-declared at tc20_verifywrap.c:32
f096bf
+declared at tc20_verifywrap.c:37
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -38,7 +38,7 @@ Thread #x's call to pthread_join failed
f096bf
    with error code 35 (EDEADLK: Resource deadlock would occur)
f096bf
    at 0x........: pthread_join_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_join (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:88)
f096bf
+   by 0x........: main (tc20_verifywrap.c:93)
f096bf
 
f096bf
 
f096bf
 ---------------- pthread_mutex_lock et al ----------------
f096bf
@@ -48,14 +48,14 @@ Thread #x's call to pthread_join failed
f096bf
 Thread #x's call to pthread_mutex_init failed
f096bf
    with error code 95 (EOPNOTSUPP: Operation not supported on transport endpoint)
f096bf
    at 0x........: pthread_mutex_init (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:102)
f096bf
+   by 0x........: main (tc20_verifywrap.c:107)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
 Thread #x: pthread_mutex_destroy of a locked mutex
f096bf
    at 0x........: mutex_destroy_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_mutex_destroy (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:112)
f096bf
+   by 0x........: main (tc20_verifywrap.c:117)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -63,7 +63,7 @@ Thread #x's call to pthread_mutex_destroy failed
f096bf
    with error code 16 (EBUSY: Device or resource busy)
f096bf
    at 0x........: mutex_destroy_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_mutex_destroy (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:112)
f096bf
+   by 0x........: main (tc20_verifywrap.c:117)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -71,7 +71,7 @@ Thread #x's call to pthread_mutex_lock failed
f096bf
    with error code 22 (EINVAL: Invalid argument)
f096bf
    at 0x........: mutex_lock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_mutex_lock (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:118)
f096bf
+   by 0x........: main (tc20_verifywrap.c:123)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -79,7 +79,7 @@ Thread #x's call to pthread_mutex_trylock failed
f096bf
    with error code 22 (EINVAL: Invalid argument)
f096bf
    at 0x........: mutex_trylock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_mutex_trylock (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:126)
f096bf
+   by 0x........: main (tc20_verifywrap.c:131)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -87,14 +87,14 @@ Thread #x's call to pthread_mutex_timedlock failed
f096bf
    with error code 22 (EINVAL: Invalid argument)
f096bf
    at 0x........: mutex_timedlock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_mutex_timedlock (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:131)
f096bf
+   by 0x........: main (tc20_verifywrap.c:136)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
 Thread #x unlocked an invalid lock at 0x........
f096bf
    at 0x........: mutex_unlock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_mutex_unlock (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:135)
f096bf
+   by 0x........: main (tc20_verifywrap.c:140)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -102,7 +102,7 @@ Thread #x's call to pthread_mutex_unlock failed
f096bf
    with error code 22 (EINVAL: Invalid argument)
f096bf
    at 0x........: mutex_unlock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_mutex_unlock (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:135)
f096bf
+   by 0x........: main (tc20_verifywrap.c:140)
f096bf
 
f096bf
 
f096bf
 ---------------- pthread_cond_wait et al ----------------
f096bf
@@ -112,7 +112,7 @@ Thread #x's call to pthread_mutex_unlock failed
f096bf
 Thread #x: pthread_cond_{timed}wait called with un-held mutex
f096bf
    at 0x........: pthread_cond_wait_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_cond_wait@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:157)
f096bf
+   by 0x........: main (tc20_verifywrap.c:162)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -120,14 +120,14 @@ Thread #x's call to pthread_cond_wait failed
f096bf
    with error code 1 (EPERM: Operation not permitted)
f096bf
    at 0x........: pthread_cond_wait_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_cond_wait@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:157)
f096bf
+   by 0x........: main (tc20_verifywrap.c:162)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
 Thread #x: pthread_cond_{signal,broadcast}: dubious: associated lock is not held by any thread
f096bf
    at 0x........: pthread_cond_signal_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_cond_signal@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:162)
f096bf
+   by 0x........: main (tc20_verifywrap.c:167)
f096bf
 
f096bf
 
f096bf
 FIXME: can't figure out how to verify wrap of pthread_cond_signal
f096bf
@@ -137,7 +137,7 @@ FIXME: can't figure out how to verify wrap of pthread_cond_signal
f096bf
 Thread #x: pthread_cond_{signal,broadcast}: dubious: associated lock is not held by any thread
f096bf
    at 0x........: pthread_cond_broadcast_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_cond_broadcast@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:168)
f096bf
+   by 0x........: main (tc20_verifywrap.c:173)
f096bf
 
f096bf
 
f096bf
 FIXME: can't figure out how to verify wrap of pthread_broadcast_signal
f096bf
@@ -147,7 +147,7 @@ FIXME: can't figure out how to verify wrap of pthread_broadcast_signal
f096bf
 Thread #x: pthread_cond_{timed}wait called with un-held mutex
f096bf
    at 0x........: pthread_cond_timedwait_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_cond_timedwait@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:175)
f096bf
+   by 0x........: main (tc20_verifywrap.c:180)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -155,7 +155,7 @@ Thread #x's call to pthread_cond_timedwait failed
f096bf
    with error code 22 (EINVAL: Invalid argument)
f096bf
    at 0x........: pthread_cond_timedwait_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_cond_timedwait@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:175)
f096bf
+   by 0x........: main (tc20_verifywrap.c:180)
f096bf
 
f096bf
 
f096bf
 ---------------- pthread_rwlock_* ----------------
f096bf
@@ -166,11 +166,11 @@ Thread #x unlocked a not-locked lock at 0x........
f096bf
    at 0x........: pthread_rwlock_unlock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_rwlock_unlock (hg_intercepts.c:...)
f096bf
    ...
f096bf
-   by 0x........: main (tc20_verifywrap.c:189)
f096bf
+   by 0x........: main (tc20_verifywrap.c:194)
f096bf
   Lock at 0x........ was first observed
f096bf
    at 0x........: pthread_rwlock_init_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_rwlock_init (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:188)
f096bf
+   by 0x........: main (tc20_verifywrap.c:193)
f096bf
 
f096bf
 (1) no error on next line
f096bf
 (2) no error on next line
f096bf
@@ -181,11 +181,11 @@ Thread #x unlocked a not-locked lock at 0x........
f096bf
    at 0x........: pthread_rwlock_unlock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_rwlock_unlock (hg_intercepts.c:...)
f096bf
    ...
f096bf
-   by 0x........: main (tc20_verifywrap.c:206)
f096bf
+   by 0x........: main (tc20_verifywrap.c:211)
f096bf
   Lock at 0x........ was first observed
f096bf
    at 0x........: pthread_rwlock_init_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_rwlock_init (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:196)
f096bf
+   by 0x........: main (tc20_verifywrap.c:201)
f096bf
 
f096bf
 (4) no error on next line
f096bf
 (5) no error on next line
f096bf
@@ -198,11 +198,15 @@ Thread #x unlocked a not-locked lock at 0x........
f096bf
    at 0x........: pthread_rwlock_unlock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_rwlock_unlock (hg_intercepts.c:...)
f096bf
    ...
f096bf
-   by 0x........: main (tc20_verifywrap.c:227)
f096bf
+   by 0x........: main (tc20_verifywrap.c:232)
f096bf
   Lock at 0x........ was first observed
f096bf
    at 0x........: pthread_rwlock_init_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_rwlock_init (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:196)
f096bf
+   by 0x........: main (tc20_verifywrap.c:201)
f096bf
+
f096bf
+
f096bf
+
f096bf
+---------------- pthread_spin_* ----------------
f096bf
 
f096bf
 
f096bf
 ---------------- sem_* ----------------
f096bf
@@ -213,7 +217,7 @@ Thread #x's call to sem_init failed
f096bf
    with error code 22 (EINVAL: Invalid argument)
f096bf
    at 0x........: sem_init_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: sem_init@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:243)
f096bf
+   by 0x........: main (tc20_verifywrap.c:267)
f096bf
 
f096bf
 
f096bf
 FIXME: can't figure out how to verify wrap of sem_destroy
f096bf
@@ -223,7 +227,7 @@ FIXME: can't figure out how to verify wrap of sem_destroy
f096bf
 Thread #x: Bug in libpthread: sem_wait succeeded on semaphore without prior sem_post
f096bf
    at 0x........: sem_wait_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: sem_wait (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:257)
f096bf
+   by 0x........: main (tc20_verifywrap.c:281)
f096bf
 
f096bf
 
f096bf
 FIXME: can't figure out how to verify wrap of sem_post
f096bf
diff --git a/helgrind/tests/tc20_verifywrap.stderr.exp-solaris b/helgrind/tests/tc20_verifywrap.stderr.exp-solaris
f096bf
index 921ebf5..072cc18 100644
f096bf
--- a/helgrind/tests/tc20_verifywrap.stderr.exp-solaris
f096bf
+++ b/helgrind/tests/tc20_verifywrap.stderr.exp-solaris
f096bf
@@ -14,21 +14,21 @@ Thread #x is the program's root thread
f096bf
 Thread #x was created
f096bf
    ...
f096bf
    by 0x........: pthread_create@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:81)
f096bf
+   by 0x........: main (tc20_verifywrap.c:86)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
 Possible data race during write of size 2 at 0x........ by thread #x
f096bf
 Locks held: none
f096bf
-   at 0x........: main (tc20_verifywrap.c:83)
f096bf
+   at 0x........: main (tc20_verifywrap.c:88)
f096bf
 
f096bf
 This conflicts with a previous write of size 2 by thread #x
f096bf
 Locks held: none
f096bf
-   at 0x........: racy_child (tc20_verifywrap.c:39)
f096bf
+   at 0x........: racy_child (tc20_verifywrap.c:44)
f096bf
    by 0x........: mythread_wrapper (hg_intercepts.c:...)
f096bf
    ...
f096bf
  Location 0x........ is 0 bytes inside global var "unprotected"
f096bf
- declared at tc20_verifywrap.c:32
f096bf
+ declared at tc20_verifywrap.c:37
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -36,7 +36,7 @@ Thread #x's call to pthread_join failed
f096bf
    with error code 45 (EDEADLK: Resource deadlock would occur)
f096bf
    at 0x........: pthread_join_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_join (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:88)
f096bf
+   by 0x........: main (tc20_verifywrap.c:93)
f096bf
 
f096bf
 
f096bf
 ---------------- pthread_mutex_lock et al ----------------
f096bf
@@ -46,14 +46,14 @@ Thread #x's call to pthread_join failed
f096bf
 Thread #x's call to mutex_init failed
f096bf
    with error code 22 (EINVAL: Invalid argument)
f096bf
    at 0x........: pthread_mutex_init (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:102)
f096bf
+   by 0x........: main (tc20_verifywrap.c:107)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
 Thread #x: pthread_mutex_destroy of a locked mutex
f096bf
    at 0x........: mutex_destroy_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_mutex_destroy (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:112)
f096bf
+   by 0x........: main (tc20_verifywrap.c:117)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -61,7 +61,7 @@ Thread #x's call to pthread_mutex_lock failed
f096bf
    with error code 1 (EPERM: Operation not permitted)
f096bf
    at 0x........: mutex_lock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_mutex_lock (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:118)
f096bf
+   by 0x........: main (tc20_verifywrap.c:123)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -69,7 +69,7 @@ Thread #x's call to pthread_mutex_trylock failed
f096bf
    with error code 1 (EPERM: Operation not permitted)
f096bf
    at 0x........: mutex_trylock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_mutex_trylock (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:126)
f096bf
+   by 0x........: main (tc20_verifywrap.c:131)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -77,14 +77,14 @@ Thread #x's call to pthread_mutex_timedlock failed
f096bf
    with error code 1 (EPERM: Operation not permitted)
f096bf
    at 0x........: mutex_timedlock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_mutex_timedlock (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:131)
f096bf
+   by 0x........: main (tc20_verifywrap.c:136)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
 Thread #x unlocked an invalid lock at 0x........
f096bf
    at 0x........: mutex_unlock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_mutex_unlock (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:135)
f096bf
+   by 0x........: main (tc20_verifywrap.c:140)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -92,7 +92,7 @@ Thread #x's call to pthread_mutex_unlock failed
f096bf
    with error code 1 (EPERM: Operation not permitted)
f096bf
    at 0x........: mutex_unlock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_mutex_unlock (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:135)
f096bf
+   by 0x........: main (tc20_verifywrap.c:140)
f096bf
 
f096bf
 
f096bf
 ---------------- pthread_cond_wait et al ----------------
f096bf
@@ -102,7 +102,7 @@ Thread #x's call to pthread_mutex_unlock failed
f096bf
 Thread #x: pthread_cond_{timed}wait called with un-held mutex
f096bf
    at 0x........: pthread_cond_wait_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_cond_wait@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:157)
f096bf
+   by 0x........: main (tc20_verifywrap.c:162)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -110,14 +110,14 @@ Thread #x's call to pthread_cond_wait failed
f096bf
    with error code 1 (EPERM: Operation not permitted)
f096bf
    at 0x........: pthread_cond_wait_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_cond_wait@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:157)
f096bf
+   by 0x........: main (tc20_verifywrap.c:162)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
 Thread #x: pthread_cond_{signal,broadcast}: dubious: associated lock is not held by any thread
f096bf
    at 0x........: pthread_cond_signal_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_cond_signal@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:162)
f096bf
+   by 0x........: main (tc20_verifywrap.c:167)
f096bf
 
f096bf
 
f096bf
 FIXME: can't figure out how to verify wrap of pthread_cond_signal
f096bf
@@ -127,7 +127,7 @@ FIXME: can't figure out how to verify wrap of pthread_cond_signal
f096bf
 Thread #x: pthread_cond_{signal,broadcast}: dubious: associated lock is not held by any thread
f096bf
    at 0x........: pthread_cond_broadcast_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_cond_broadcast@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:168)
f096bf
+   by 0x........: main (tc20_verifywrap.c:173)
f096bf
 
f096bf
 
f096bf
 FIXME: can't figure out how to verify wrap of pthread_broadcast_signal
f096bf
@@ -137,7 +137,7 @@ FIXME: can't figure out how to verify wrap of pthread_broadcast_signal
f096bf
 Thread #x: pthread_cond_{timed}wait called with un-held mutex
f096bf
    at 0x........: pthread_cond_timedwait_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_cond_timedwait@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:175)
f096bf
+   by 0x........: main (tc20_verifywrap.c:180)
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
 
f096bf
@@ -145,7 +145,7 @@ Thread #x's call to pthread_cond_timedwait failed
f096bf
    with error code 1 (EPERM: Operation not permitted)
f096bf
    at 0x........: pthread_cond_timedwait_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_cond_timedwait@* (hg_intercepts.c:...)
f096bf
-   by 0x........: main (tc20_verifywrap.c:175)
f096bf
+   by 0x........: main (tc20_verifywrap.c:180)
f096bf
 
f096bf
 
f096bf
 ---------------- pthread_rwlock_* ----------------
f096bf
@@ -156,13 +156,13 @@ Thread #x unlocked a not-locked lock at 0x........
f096bf
    at 0x........: pthread_rwlock_unlock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_rwlock_unlock (hg_intercepts.c:...)
f096bf
    ...
f096bf
-   by 0x........: main (tc20_verifywrap.c:189)
f096bf
+   by 0x........: main (tc20_verifywrap.c:194)
f096bf
  Lock at 0x........ was first observed
f096bf
    at 0x........: pthread_rwlock_init (hg_intercepts.c:...)
f096bf
    ...
f096bf
-   by 0x........: main (tc20_verifywrap.c:188)
f096bf
+   by 0x........: main (tc20_verifywrap.c:193)
f096bf
  Location 0x........ is 0 bytes inside rwl.__pthread_rwlock_readers,
f096bf
- declared at tc20_verifywrap.c:52, in frame #x of thread x
f096bf
+ declared at tc20_verifywrap.c:57, in frame #x of thread x
f096bf
 
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
@@ -172,7 +172,7 @@ Thread #x's call to pthread_rwlock_unlock failed
f096bf
    at 0x........: pthread_rwlock_unlock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_rwlock_unlock (hg_intercepts.c:...)
f096bf
    ...
f096bf
-   by 0x........: main (tc20_verifywrap.c:189)
f096bf
+   by 0x........: main (tc20_verifywrap.c:194)
f096bf
 
f096bf
 (1) no error on next line
f096bf
 (2) no error on next line
f096bf
@@ -183,13 +183,13 @@ Thread #x unlocked a not-locked lock at 0x........
f096bf
    at 0x........: pthread_rwlock_unlock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_rwlock_unlock (hg_intercepts.c:...)
f096bf
    ...
f096bf
-   by 0x........: main (tc20_verifywrap.c:206)
f096bf
+   by 0x........: main (tc20_verifywrap.c:211)
f096bf
  Lock at 0x........ was first observed
f096bf
    at 0x........: pthread_rwlock_init (hg_intercepts.c:...)
f096bf
    ...
f096bf
-   by 0x........: main (tc20_verifywrap.c:196)
f096bf
+   by 0x........: main (tc20_verifywrap.c:201)
f096bf
  Location 0x........ is 0 bytes inside rwl2.__pthread_rwlock_readers,
f096bf
- declared at tc20_verifywrap.c:53, in frame #x of thread x
f096bf
+ declared at tc20_verifywrap.c:58, in frame #x of thread x
f096bf
 
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
@@ -199,7 +199,7 @@ Thread #x's call to pthread_rwlock_unlock failed
f096bf
    at 0x........: pthread_rwlock_unlock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_rwlock_unlock (hg_intercepts.c:...)
f096bf
    ...
f096bf
-   by 0x........: main (tc20_verifywrap.c:206)
f096bf
+   by 0x........: main (tc20_verifywrap.c:211)
f096bf
 
f096bf
 (4) no error on next line
f096bf
 (5) no error on next line
f096bf
@@ -212,13 +212,13 @@ Thread #x unlocked a not-locked lock at 0x........
f096bf
    at 0x........: pthread_rwlock_unlock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_rwlock_unlock (hg_intercepts.c:...)
f096bf
    ...
f096bf
-   by 0x........: main (tc20_verifywrap.c:227)
f096bf
+   by 0x........: main (tc20_verifywrap.c:232)
f096bf
  Lock at 0x........ was first observed
f096bf
    at 0x........: pthread_rwlock_init (hg_intercepts.c:...)
f096bf
    ...
f096bf
-   by 0x........: main (tc20_verifywrap.c:196)
f096bf
+   by 0x........: main (tc20_verifywrap.c:201)
f096bf
  Location 0x........ is 0 bytes inside rwl2.__pthread_rwlock_readers,
f096bf
- declared at tc20_verifywrap.c:53, in frame #x of thread x
f096bf
+ declared at tc20_verifywrap.c:58, in frame #x of thread x
f096bf
 
f096bf
 
f096bf
 ----------------------------------------------------------------
f096bf
@@ -228,7 +228,11 @@ Thread #x's call to pthread_rwlock_unlock failed
f096bf
    at 0x........: pthread_rwlock_unlock_WRK (hg_intercepts.c:...)
f096bf
    by 0x........: pthread_rwlock_unlock (hg_intercepts.c:...)
f096bf
    ...
f096bf
-   by 0x........: main (tc20_verifywrap.c:227)
f096bf
+   by 0x........: main (tc20_verifywrap.c:232)
f096bf
+
f096bf
+
f096bf
+
f096bf
+---------------- pthread_spin_* ----------------
f096bf
 
f096bf
 
f096bf
 ---------------- sem_* ----------------
f096bf
@@ -239,7 +243,7 @@ Thread #x's call to sema_init failed
f096bf
    with error code 22 (EINVAL: Invalid argument)
f096bf
    at 0x........: sema_init (hg_intercepts.c:...)
f096bf
    ...
f096bf
-   by 0x........: main (tc20_verifywrap.c:248)
f096bf
+   by 0x........: main (tc20_verifywrap.c:267)
f096bf
 
f096bf
 
f096bf
 FIXME: can't figure out how to verify wrap of sem_destroy