From e6c3a80b01ffb52079783cddd9be6d392d0f7039 Mon Sep 17 00:00:00 2001 From: Benji Dial Date: Mon, 29 Jul 2024 19:59:52 -0400 Subject: redesign compositor protocol, start widget library --- euler/include/std/unique_lock.hpp | 53 --------------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 euler/include/std/unique_lock.hpp (limited to 'euler/include/std/unique_lock.hpp') diff --git a/euler/include/std/unique_lock.hpp b/euler/include/std/unique_lock.hpp deleted file mode 100644 index 14b3645..0000000 --- a/euler/include/std/unique_lock.hpp +++ /dev/null @@ -1,53 +0,0 @@ -#pragma once - -namespace std { - - template - class unique_lock { - - Mutex *the_mutex; - bool has_locked; - - public: - inline unique_lock() noexcept : the_mutex(0) {} - - unique_lock(const unique_lock &other) = delete; - - inline unique_lock(unique_lock &&other) noexcept - : the_mutex(other.the_mutex), has_locked(other.has_locked) { - other.the_mutex = 0; - } - - inline explicit unique_lock(Mutex &m) - : the_mutex(&m), has_locked(true) { - the_mutex->lock(); - } - - inline ~unique_lock() { - if (the_mutex && has_locked) - the_mutex->unlock(); - } - - unique_lock &operator =(const unique_lock &other) = delete; - - inline unique_lock &operator =(unique_lock &&other) { - if (the_mutex && has_locked) - the_mutex->unlock(); - the_mutex = other.the_mutex; - has_locked = other.has_locked; - other.the_mutex = 0; - } - - inline void lock() { - the_mutex->lock(); - has_locked = true; - } - - inline void unlock() { - the_mutex->unlock(); - has_locked = false; - } - - }; - -} -- cgit v1.2.3