blob: 6089ee8990939fc572e8d40df08577b9ffa4289f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* ISC license. */
#include <unistd.h>
#include <skalibs/fcntl.h>
#include <skalibs/djbunix.h>
int fd_islocked (int fd)
{
struct flock fl =
{
.l_type = F_RDLCK,
.l_whence = SEEK_SET,
.l_start = 0,
.l_len = 0
} ;
return fcntl(fd, F_GETLK, &fl) == -1 ? -1 : fl.l_type != F_UNLCK ;
}
|