Sign in
cobalt
/
cobalt
/
788710a0d7b1b8d8e2340dd5fad5e8783a239862
/
.
/
third_party
/
musl
/
src
/
internal
/
lock.h
blob: c77db6f7be813f94acfa1695b7882fa4b9e1dd78 [
file
] [
log
] [
blame
]
#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