blob: fde901bc814cf5d3c500b5e214ec2c6506b5e9c1 (
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
|
/* ISC license. */
#include <skalibs/sysdeps.h>
#ifdef SKALIBS_HASFLOCK
#include <skalibs/nonposix.h>
#include <errno.h>
#include <sys/file.h>
#include <skalibs/djbunix.h>
int lock_ex (int fd)
{
register int r ;
do
r = flock(fd, LOCK_EX) ;
while ((r == -1) && (errno == EINTR)) ;
return r ;
}
#else
#include <sys/types.h>
#include <unistd.h>
#include <errno.h>
#include <skalibs/djbunix.h>
int lock_ex (int fd)
{
register int r ;
do
r = lockf(fd, F_LOCK, 0) ;
while ((r == -1) && (errno == EINTR)) ;
return r ;
}
#endif
|