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

int pthread_spin_lock(pthread_spinlock_t *s)
{
	if (*s) return EDEADLK;
	*s = 1;
	return 0;
}