blob: 45fc1ff53f190d5772e78ee626114b2243c61cd9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "pthread_impl.h"
#include <errno.h>
int pthread_spin_trylock(pthread_spinlock_t *s)
{
return a_cas(s, 0, EBUSY);
}
#ifdef TEST
int
main(void) {
return 0;
}
#endif
|