mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-05-18 19:46:27 -04:00
Generic device guard; use Corsair implementation for all Corsair HID cooling-capable controllers
This commit is contained in:
committed by
Adam Honse
parent
c5c5bf519b
commit
f672397563
22
interop/DeviceGuardLock.cpp
Normal file
22
interop/DeviceGuardLock.cpp
Normal file
@@ -0,0 +1,22 @@
|
||||
/*---------------------------------------------------------*\
|
||||
| DeviceGuardLock.cpp |
|
||||
| |
|
||||
| Represents a lock for a device guard, ensuring |
|
||||
| exclusive access to a device when acquired |
|
||||
| and releasing it when destroyed. |
|
||||
| |
|
||||
| Evan Mulawski, 2023-09-05 |
|
||||
| |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include "DeviceGuardLock.h"
|
||||
|
||||
DeviceGuardLock::DeviceGuardLock(DeviceGuard& guard_ref) : guard(guard_ref)
|
||||
{
|
||||
guard.Acquire();
|
||||
}
|
||||
|
||||
DeviceGuardLock::~DeviceGuardLock()
|
||||
{
|
||||
guard.Release();
|
||||
}
|
||||
Reference in New Issue
Block a user