repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix and overhaul dlsym depedency order, always record direct deps
[musl.git]
/
src
/
thread
/
pthread_spin_init.c
blob
681881cf369ce862613b88184062058f26f9f7b2
1
#include
"pthread_impl.h"
2
3
int
pthread_spin_init
(
pthread_spinlock_t
*
s
,
int
shared
)
4
{
5
return
*
s
=
0
;
6
}