aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/wasi/thread-stub/pthread_spin_trylock.c
blob: 5ef1b2a02a820c026eb69fcc457e83780b28b31f (plain)
1
2
3
4
5
6
7
8
#include "pthread_impl.h"

int pthread_spin_trylock(pthread_spinlock_t *s)
{
	if (*s) return EBUSY;
	*s = 1;
	return 0;
}