blob: 6a8fd42968fa89969572a1fbcd0f11bb6e60ed55 (
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
|
/* 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_shnb (int fd)
{
register int r ;
do
r = flock(fd, LOCK_SH | LOCK_NB) ;
while ((r == -1) && (errno == EINTR)) ;
return r ;
}
#else
#include <sys/types.h>
#include <unistd.h>
#include <errno.h>
#include <skalibs/djbunix.h>
int lock_shnb (int fd)
{
register int r ;
do
r = lockf(fd, F_TLOCK, 0) ;
while ((r == -1) && (errno == EINTR)) ;
if ((r == -1) && (errno == EACCES)) errno = EAGAIN ;
return r ;
}
#endif
|