Sign in
cobalt
/
cobalt.git
/
56d7c4e1a836a7ef6e2823bffb8d1567758b82eb
/
.
/
third_party
/
musl
/
src
/
internal
/
lock.h
blob: c77db6f7be813f94acfa1695b7882fa4b9e1dd78 [
file
]
#ifndef
LOCK_H
#define
LOCK_H
hidden
void
__lock
(
volatile
int
*);
hidden
void
__unlock
(
volatile
int
*);
#define
LOCK
(
x
)
__lock
(
x
)
#define
UNLOCK
(
x
)
__unlock
(
x
)
#endif