Update even more file header comments to standardized new format
This commit is contained in:
parent
200b8e3a24
commit
a3066db16c
31 changed files with 284 additions and 152 deletions
|
|
@ -1,12 +1,14 @@
|
|||
/*---------------------------------------------------------*\
|
||||
| DeviceGuard.cpp |
|
||||
| DeviceGuard.cpp |
|
||||
| |
|
||||
| An abstract interface for acquiring and releasing |
|
||||
| a guard on a device, serving as a foundation for |
|
||||
| implementing device-specific synchronization mechanisms. |
|
||||
| An abstract interface for acquiring and releasing |
|
||||
| a guard on a device, serving as a foundation for |
|
||||
| implementing device-specific synchronization mechanisms |
|
||||
| |
|
||||
| Evan Mulawski, 2023-09-05 |
|
||||
| Evan Mulawski 09 May 2023 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include "DeviceGuard.h"
|
||||
|
|
|
|||
|
|
@ -1,12 +1,14 @@
|
|||
/*---------------------------------------------------------*\
|
||||
| DeviceGuard.h |
|
||||
| DeviceGuard.h |
|
||||
| |
|
||||
| An abstract interface for acquiring and releasing |
|
||||
| a guard on a device, serving as a foundation for |
|
||||
| implementing device-specific synchronization mechanisms. |
|
||||
| An abstract interface for acquiring and releasing |
|
||||
| a guard on a device, serving as a foundation for |
|
||||
| implementing device-specific synchronization mechanisms |
|
||||
| |
|
||||
| Evan Mulawski, 2023-09-05 |
|
||||
| Evan Mulawski 09 May 2023 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#pragma once
|
||||
|
|
|
|||
|
|
@ -1,12 +1,14 @@
|
|||
/*---------------------------------------------------------*\
|
||||
| DeviceGuardLock.cpp |
|
||||
| DeviceGuardLock.cpp |
|
||||
| |
|
||||
| Represents a lock for a device guard, ensuring |
|
||||
| exclusive access to a device when acquired |
|
||||
| and releasing it when destroyed. |
|
||||
| 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 |
|
||||
| Evan Mulawski 09 May 2023 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include "DeviceGuardLock.h"
|
||||
|
|
|
|||
|
|
@ -1,12 +1,14 @@
|
|||
/*---------------------------------------------------------*\
|
||||
| DeviceGuardLock.h |
|
||||
| DeviceGuardLock.h |
|
||||
| |
|
||||
| Represents a lock for a device guard, ensuring |
|
||||
| exclusive access to a device when acquired |
|
||||
| and releasing it when destroyed. |
|
||||
| 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 |
|
||||
| Evan Mulawski 09 May 2023 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#pragma once
|
||||
|
|
|
|||
|
|
@ -1,12 +1,14 @@
|
|||
/*---------------------------------------------------------*\
|
||||
| DeviceGuardManager.cpp |
|
||||
| DeviceGuardManager.cpp |
|
||||
| |
|
||||
| Responsible for managing a DeviceGuard implementation, |
|
||||
| allowing clients to wait for exclusive access to a |
|
||||
| device using the DeviceGuardLock it provides. |
|
||||
| Responsible for managing a DeviceGuard implementation, |
|
||||
| allowing clients to wait for exclusive access to a |
|
||||
| device using the DeviceGuardLock it provides |
|
||||
| |
|
||||
| Evan Mulawski, 2023-09-05 |
|
||||
| Evan Mulawski 09 May 2023 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include "DeviceGuardManager.h"
|
||||
|
|
|
|||
|
|
@ -1,12 +1,14 @@
|
|||
/*---------------------------------------------------------*\
|
||||
| DeviceGuardManager.h |
|
||||
| DeviceGuardManager.h |
|
||||
| |
|
||||
| Responsible for managing a DeviceGuard implementation, |
|
||||
| allowing clients to wait for exclusive access to a |
|
||||
| device using the DeviceGuardLock it provides. |
|
||||
| Responsible for managing a DeviceGuard implementation, |
|
||||
| allowing clients to wait for exclusive access to a |
|
||||
| device using the DeviceGuardLock it provides |
|
||||
| |
|
||||
| Evan Mulawski, 2023-09-05 |
|
||||
| Evan Mulawski 09 May 2023 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#pragma once
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue