mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-17 07:57:54 +00:00
kernel: Rename Semaphore to ConditionVariable.
This commit is contained in:
parent
a689a33995
commit
7a59da7834
11 changed files with 180 additions and 171 deletions
|
@ -17,7 +17,7 @@ namespace Kernel {
|
|||
class WaitObject;
|
||||
class Event;
|
||||
class Mutex;
|
||||
class Semaphore;
|
||||
class ConditionVariable;
|
||||
class Thread;
|
||||
class Timer;
|
||||
}
|
||||
|
@ -111,10 +111,10 @@ public:
|
|||
std::vector<std::unique_ptr<WaitTreeItem>> GetChildren() const override;
|
||||
};
|
||||
|
||||
class WaitTreeSemaphore : public WaitTreeWaitObject {
|
||||
class WaitTreeConditionVariable : public WaitTreeWaitObject {
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit WaitTreeSemaphore(const Kernel::Semaphore& object);
|
||||
explicit WaitTreeConditionVariable(const Kernel::ConditionVariable& object);
|
||||
std::vector<std::unique_ptr<WaitTreeItem>> GetChildren() const override;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue