mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-13 14:07:46 +00:00
Kernel: Change WaitObject to Synchronization object. In order to better reflect RE.
This commit is contained in:
parent
a47f0ff68b
commit
3a7f539463
22 changed files with 110 additions and 98 deletions
|
@ -8,7 +8,7 @@
|
|||
#include <string>
|
||||
#include <utility>
|
||||
|
||||
#include "core/hle/kernel/wait_object.h"
|
||||
#include "core/hle/kernel/synchronization_object.h"
|
||||
|
||||
namespace Kernel {
|
||||
|
||||
|
@ -19,7 +19,7 @@ class ServerSession;
|
|||
* Parent structure to link the client and server endpoints of a session with their associated
|
||||
* client port.
|
||||
*/
|
||||
class Session final : public WaitObject {
|
||||
class Session final : public SynchronizationObject {
|
||||
public:
|
||||
explicit Session(KernelCore& kernel);
|
||||
~Session() override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue