1
0
Fork 0
mirror of https://gitlab.com/niansa/cosched.git synced 2025-03-06 20:53:26 +01:00

Improved LockGuard nodiscard

This commit is contained in:
niansa 2023-05-22 23:57:49 +02:00
parent fddceb7171
commit 671bdb57be

View file

@ -6,7 +6,7 @@
namespace CoSched {
class LockGuard {
class [[nodiscard("Discarding the lock guard will release the lock immediately.")]] LockGuard {
class Mutex *mutex;
void unlock();
@ -42,7 +42,6 @@ public:
unlock();
}
[[nodiscard("Discarding the result of this function will release the lock immediately.")]]
AwaitableTask<LockGuard> lock() {
auto& task = Task::get_current();
// Make sure the lock is not already held by same task