Sign in
cobalt
/
cobalt
/
97b64f26fb12c9eab352139c26f0b01d1cb6d0b9
/
.
/
third_party
/
musl
/
src
/
stdio
/
flockfile.c
blob: 6806cf8b32e0c13f1b67c2d920e8485a94c42f42 [
file
] [
log
] [
blame
]
#include
"stdio_impl.h"
#include
"pthread_impl.h"
void
__register_locked_file
(
FILE
*,
pthread_t
);
void
flockfile
(
FILE
*
f
)
{
if
(!
ftrylockfile
(
f
))
return
;
__lockfile
(
f
);
__register_locked_file
(
f
,
__pthread_self
());
}