mirror of
https://github.com/ziglang/zig.git
synced 2025-12-09 07:43:10 +00:00
9 lines
121 B
C
Vendored
9 lines
121 B
C
Vendored
#include "pthread_impl.h"
|
|
|
|
int pthread_spin_lock(pthread_spinlock_t *s)
|
|
{
|
|
if (*s) return EDEADLK;
|
|
*s = 1;
|
|
return 0;
|
|
}
|