You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include "FileLock.h"
|
|
|
|
#include <bits/lockf.h>
|
|
|
|
FileLock::FileLock(int fd) : fd_(fd) {}
|
|
|
|
int FileLock::lock() {
|
|
return lockf(fd_, F_LOCK, 0);
|
|
}
|
|
|
|
int FileLock::unlock() {
|
|
return lockf(fd_, F_ULOCK, 0);
|
|
}
|