diff options
author | Lioncash <mathew1800@gmail.com> | 2018-07-31 23:21:36 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-07-31 23:21:38 -0400 |
commit | 49e198b20db78c036b00be599448e386b2029c73 (patch) | |
tree | 1c42e12810223019e2db91ae4fdbf89d7311c1b5 /src | |
parent | ff2c1b0a94d83e35023732a323fc8b6500bc2a9a (diff) |
kernel/thread: Remove unimplemented function prototype
Given there's no implementation, we may as well remove the code
entirely.
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/kernel/thread.h | 6 |
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(); void WaitCurrentThread_Sleep(); /** - * Waits the current thread from an ArbitrateAddress call - * @param wait_address Arbitration address used to resume from wait - */ -void WaitCurrentThread_ArbitrateAddress(VAddr wait_address); - -/** * Stops the current thread and removes it from the thread_list */ void ExitCurrentThread(); |