2#include <cosmos/error/UsageError.hxx>
3#include <cosmos/fs/FileLock.hxx>
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"));
12 m_fd.setOFDLockWait(m_lock);