diff options
Diffstat (limited to 'nptl/tst-spin2.c')
-rw-r--r-- | nptl/tst-spin2.c | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/nptl/tst-spin2.c b/nptl/tst-spin2.c index ff7421ae47..c55bc65779 100644 --- a/nptl/tst-spin2.c +++ b/nptl/tst-spin2.c @@ -88,12 +88,26 @@ main (void) err = pthread_spin_trylock (s); if (err == 0) { - puts ("spin_trylock succeeded"); + puts ("1st spin_trylock succeeded"); exit (1); } else if (err != EBUSY) { - puts ("spin_trylock didn't return EBUSY"); + puts ("1st spin_trylock didn't return EBUSY"); + exit (1); + } + + err = pthread_spin_unlock (s); + if (err != 0) + { + puts ("parent: spin_unlock failed"); + exit (1); + } + + err = pthread_spin_trylock (s); + if (err != 0) + { + puts ("2nd spin_trylock failed"); exit (1); } |