mirror of
https://github.com/ziglang/zig.git
synced 2025-12-07 23:03:08 +00:00
9 lines
122 B
C
Vendored
9 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;
|
|
}
|