summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/process.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-04-02 00:19:42 +0200
committerLioncash <mathew1800@gmail.com>2019-04-02 00:19:45 +0200
commit20cc0b8d3cd46dfc8eed7689f93b6d41f320c709 (patch)
treeb1f78f8b7a5364d9fb17498eb469b414160827d8 /src/core/hle/kernel/process.h
parentkernel/thread: Avoid sign conversion within GetCommandBufferAddress() (diff)
downloadyuzu-20cc0b8d3cd46dfc8eed7689f93b6d41f320c709.tar
yuzu-20cc0b8d3cd46dfc8eed7689f93b6d41f320c709.tar.gz
yuzu-20cc0b8d3cd46dfc8eed7689f93b6d41f320c709.tar.bz2
yuzu-20cc0b8d3cd46dfc8eed7689f93b6d41f320c709.tar.lz
yuzu-20cc0b8d3cd46dfc8eed7689f93b6d41f320c709.tar.xz
yuzu-20cc0b8d3cd46dfc8eed7689f93b6d41f320c709.tar.zst
yuzu-20cc0b8d3cd46dfc8eed7689f93b6d41f320c709.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/process.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/process.h b/src/core/hle/kernel/process.h
index 732d12170..23f898b0c 100644
--- a/src/core/hle/kernel/process.h
+++ b/src/core/hle/kernel/process.h
@@ -237,7 +237,7 @@ private:
~Process() override;
/// Checks if the specified thread should wait until this process is available.
- bool ShouldWait(Thread* thread) const override;
+ bool ShouldWait(const Thread* thread) const override;
/// Acquires/locks this process for the specified thread if it's available.
void Acquire(Thread* thread) override;