summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel
diff options
context:
space:
mode:
authorGravatar Lioncash2018-07-31 23:21:36 -0400
committerGravatar Lioncash2018-07-31 23:21:38 -0400
commit49e198b20db78c036b00be599448e386b2029c73 (patch)
tree1c42e12810223019e2db91ae4fdbf89d7311c1b5 /src/core/hle/kernel
parentMerge pull request #877 from lioncash/remove (diff)
downloadyuzu-49e198b20db78c036b00be599448e386b2029c73.tar.gz
yuzu-49e198b20db78c036b00be599448e386b2029c73.tar.xz
yuzu-49e198b20db78c036b00be599448e386b2029c73.zip
kernel/thread: Remove unimplemented function prototype
Given there's no implementation, we may as well remove the code entirely.
Diffstat (limited to 'src/core/hle/kernel')
-rw-r--r--src/core/hle/kernel/thread.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h
index a456745a1..3a96db5f3 100644
--- a/src/core/hle/kernel/thread.h
+++ b/src/core/hle/kernel/thread.h
@@ -288,12 +288,6 @@ Thread* GetCurrentThread();
288void WaitCurrentThread_Sleep(); 288void WaitCurrentThread_Sleep();
289 289
290/** 290/**
291 * Waits the current thread from an ArbitrateAddress call
292 * @param wait_address Arbitration address used to resume from wait
293 */
294void WaitCurrentThread_ArbitrateAddress(VAddr wait_address);
295
296/**
297 * Stops the current thread and removes it from the thread_list 291 * Stops the current thread and removes it from the thread_list
298 */ 292 */
299void ExitCurrentThread(); 293void ExitCurrentThread();