Warning, /testsuites/psxtests/psxspin01/psxspin01.scn is written in an unsupported language. File is not indexed.
0001 *** BEGIN OF TEST PSXSPIN 1 ***
0002 pthread_spin_init( &spinlock, PTHREAD_PROCESS_PRIVATE ) -- OK
0003 pthread_spin_destroy( &spinlock ) -- OK
0004 pthread_spin_init( &spinlock, PTHREAD_PROCESS_SHARED ) -- OK
0005 pthread_spin_destroy( &spinlock ) -- OK
0006 pthread_spin_init( &spinlock, 0x1234 ) -- OK
0007 pthread_spin_init( &spinlock2, 0 ) -- OK
0008 pthread_spin_lock( &spinlock ) -- OK
0009 pthread_spin_lock( &spinlock2 ) -- OK
0010 pthread_spin_unlock( &spinlock2 ) -- OK
0011 pthread_spin_unlock( &spinlock ) -- OK
0012 pthread_spin_trylock( &spinlock ) -- OK
0013 pthread_spin_trylock( &spinlock2 ) -- OK
0014 pthread_spin_unlock( &spinlock2 ) -- OK
0015 pthread_spin_unlock( &spinlock ) -- OK
0016 pthread_spin_destroy( &spinlock2 ) -- OK
0017 pthread_spin_destroy( &spinlock ) -- OK
0018 *** END OF TEST PSXSPIN 1 ***