libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
FileLock.cxx
1// cosmos
2#include <cosmos/error/UsageError.hxx>
3#include <cosmos/fs/FileLock.hxx>
4
5namespace cosmos {
6
7FileLockGuard::FileLockGuard(FileDescriptor fd, const FileLock &lock) :
8 m_fd{fd}, m_lock{lock} {
9 if (lock.type() == FileLock::Type::UNLOCK) {
10 cosmos_throw (UsageError("Cannot combine UNLOCK operation with FileLockGuard"));
11 }
12 m_fd.setOFDLockWait(m_lock);
13}
14
15} // end ns