zig/lib/libc/wasi/thread-stub/pthread_spin_trylock.c
2025-08-20 19:18:11 +02:00

8 lines
122 B
C
Vendored

#include "pthread_impl.h"
int pthread_spin_trylock(pthread_spinlock_t *s)
{
if (*s) return EBUSY;
*s = 1;
return 0;
}