diff options
| author | 2019-04-03 11:46:17 -0400 | |
|---|---|---|
| committer | 2019-04-03 11:46:17 -0400 | |
| commit | 74a4a5047017f9ed01d7139a1e6aee258382b91d (patch) | |
| tree | 49df4085cc5210019d561ab1a0abe787a1dbc514 /src/core/hle/kernel/process.h | |
| parent | Merge pull request #2326 from lioncash/translation (diff) | |
| parent | kernel/thread: Make AllWaitObjectsReady() a const qualified member function (diff) | |
| download | yuzu-74a4a5047017f9ed01d7139a1e6aee258382b91d.tar.gz yuzu-74a4a5047017f9ed01d7139a1e6aee258382b91d.tar.xz yuzu-74a4a5047017f9ed01d7139a1e6aee258382b91d.zip | |
Merge pull request #2314 from lioncash/const
kernel/thread: Minor interface cleanup
Diffstat (limited to 'src/core/hle/kernel/process.h')
| -rw-r--r-- | src/core/hle/kernel/process.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/process.h b/src/core/hle/kernel/process.h index f9ddc937c..f060f2a3b 100644 --- a/src/core/hle/kernel/process.h +++ b/src/core/hle/kernel/process.h | |||
| @@ -251,7 +251,7 @@ private: | |||
| 251 | ~Process() override; | 251 | ~Process() override; |
| 252 | 252 | ||
| 253 | /// Checks if the specified thread should wait until this process is available. | 253 | /// Checks if the specified thread should wait until this process is available. |
| 254 | bool ShouldWait(Thread* thread) const override; | 254 | bool ShouldWait(const Thread* thread) const override; |
| 255 | 255 | ||
| 256 | /// Acquires/locks this process for the specified thread if it's available. | 256 | /// Acquires/locks this process for the specified thread if it's available. |
| 257 | void Acquire(Thread* thread) override; | 257 | void Acquire(Thread* thread) override; |