diff options
| author | 2020-11-14 22:37:45 -0800 | |
|---|---|---|
| committer | 2020-11-29 01:31:52 -0800 | |
| commit | c2ad1243baaf25dcb6f9c80121c48ff6da1986cb (patch) | |
| tree | f0c11f5fb9ba8cf795ee20a763274fe1bf0a1832 /src/core/hle/kernel/thread.h | |
| parent | core: arm: Implement InvalidateCacheRange for CPU cache invalidation. (diff) | |
| download | yuzu-c2ad1243baaf25dcb6f9c80121c48ff6da1986cb.tar.gz yuzu-c2ad1243baaf25dcb6f9c80121c48ff6da1986cb.tar.xz yuzu-c2ad1243baaf25dcb6f9c80121c48ff6da1986cb.zip | |
hle: kernel: thread: Remove unused "Running" state.
Diffstat (limited to 'src/core/hle/kernel/thread.h')
| -rw-r--r-- | src/core/hle/kernel/thread.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h index 20e86fb81..a75071e9b 100644 --- a/src/core/hle/kernel/thread.h +++ b/src/core/hle/kernel/thread.h | |||
| @@ -72,7 +72,6 @@ enum ThreadProcessorId : s32 { | |||
| 72 | }; | 72 | }; |
| 73 | 73 | ||
| 74 | enum class ThreadStatus { | 74 | enum class ThreadStatus { |
| 75 | Running, ///< Currently running | ||
| 76 | Ready, ///< Ready to run | 75 | Ready, ///< Ready to run |
| 77 | Paused, ///< Paused by SetThreadActivity or debug | 76 | Paused, ///< Paused by SetThreadActivity or debug |
| 78 | WaitHLEEvent, ///< Waiting for hle event to finish | 77 | WaitHLEEvent, ///< Waiting for hle event to finish |