blob: 6806cf8b32e0c13f1b67c2d920e8485a94c42f42 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#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());
}
|