blob: 4ac6b400e4a1709db7bf3af6479d5a96a0a6b422 (
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
@source 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
|