blob: c75e050d4f31977fef97014e5b5beb271e6309d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
/* $OpenBSD: flockfile.c,v 1.7 2004/09/28 18:12:44 otto Exp $ */
#include <sys/time.h>
#include <stdio.h>
#include "thread_private.h"
/*
* Subroutine versions of the macros in <stdio.h>
* Note that these are all no-ops because libc does not do threads.
* Strong implementation of file locking in libc_r/uthread/uthread_file.c
*/
#undef flockfile
#undef ftrylockfile
#undef funlockfile
WEAK_PROTOTYPE(flockfile);
WEAK_PROTOTYPE(ftrylockfile);
WEAK_PROTOTYPE(funlockfile);
WEAK_ALIAS(flockfile);
WEAK_ALIAS(ftrylockfile);
WEAK_ALIAS(funlockfile);
void
WEAK_NAME(flockfile)(FILE * fp)
{
}
int
WEAK_NAME(ftrylockfile)(FILE *fp)
{
return 0;
}
void
WEAK_NAME(funlockfile)(FILE * fp)
{
}
|