diff options
author | bunnei <ericbunnie@gmail.com> | 2014-06-06 05:13:28 +0200 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-06-13 15:51:08 +0200 |
commit | aae9fcf4a4071a408af10ca1c72180cdc04687b8 (patch) | |
tree | 9d5bd2a270b9531a06adb59e3134c7224dd22c22 /src/core/hle/kernel/thread.cpp | |
parent | Kernel: Added real support for thread and event blocking (diff) | |
download | yuzu-aae9fcf4a4071a408af10ca1c72180cdc04687b8.tar yuzu-aae9fcf4a4071a408af10ca1c72180cdc04687b8.tar.gz yuzu-aae9fcf4a4071a408af10ca1c72180cdc04687b8.tar.bz2 yuzu-aae9fcf4a4071a408af10ca1c72180cdc04687b8.tar.lz yuzu-aae9fcf4a4071a408af10ca1c72180cdc04687b8.tar.xz yuzu-aae9fcf4a4071a408af10ca1c72180cdc04687b8.tar.zst yuzu-aae9fcf4a4071a408af10ca1c72180cdc04687b8.zip |
Diffstat (limited to 'src/core/hle/kernel/thread.cpp')
-rw-r--r-- | src/core/hle/kernel/thread.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp index d372df709..180c14928 100644 --- a/src/core/hle/kernel/thread.cpp +++ b/src/core/hle/kernel/thread.cpp @@ -38,16 +38,6 @@ public: inline bool IsSuspended() const { return (status & THREADSTATUS_SUSPEND) != 0; } /** - * Synchronize kernel object - * @param wait Boolean wait set if current thread should wait as a result of sync operation - * @return Result of operation, 0 on success, otherwise error code - */ - Result SyncRequest(bool* wait) { - // TODO(bunnei): ImplementMe - return 0; - } - - /** * Wait for kernel object to synchronize * @param wait Boolean wait set if current thread should wait as a result of sync operation * @return Result of operation, 0 on success, otherwise error code |