mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-07 14:24:43 +00:00
8 lines
122 B
C
Vendored
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;
|
|
}
|