blob: 898f3b609f5c3a2c2cbff680dfa2e6bf10c14c36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <fcntl.h>
#include "open.h"
int open_lock(const char *fn)
{
#ifdef O_CLOEXEC
int fd = open(fn,O_RDWR | O_CLOEXEC);
if (fd == -1) return -1;
#else
int fd = open(fn,O_RDWR);
if (fd == -1) return -1;
fcntl(fd,F_SETFD,1);
#endif
if (lockf(fd,F_LOCK,0) == -1) { close(fd); return -1; }
return fd;
}
|