blob: 52852108b880a6abd4cd532efb2d4ec758c4fa74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include <unistd.h>
#include <sys/types.h>
#include <sys/file.h>
#include <fcntl.h>
#include "lock.h"
/**
* @file lock.c
* @author djb
* @ref qmail
* @brief locking of resources
*/
#ifdef HASFLOCK
int lock_ex(int fd) { return flock(fd,LOCK_EX); }
int lock_exnb(int fd) { return flock(fd,LOCK_EX | LOCK_NB); }
int lock_un(int fd) { return flock(fd,LOCK_UN); }
#else
int lock_ex(int fd) { return lockf(fd,1,0); }
int lock_exnb(int fd) { return lockf(fd,2,0); }
int lock_un(int fd) { return lockf(fd,0,0); }
#endif
|