blob: 1603a977c84f1eaa4df566ec0119a27d95526d5b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "pthread_impl.h"
int pthread_spin_unlock(pthread_spinlock_t *s)
{
a_store(s, 0);
return 0;
}
#ifdef TEST
int
main(void) {
return 0;
}
#endif
|