summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/thread.h
diff options
context:
space:
mode:
authorGravatar Subv2017-01-05 13:17:06 -0500
committerGravatar Subv2017-01-05 13:17:06 -0500
commit5e2a8ebabf52fc05eca41cafad1c85478a0c5dbb (patch)
tree2eab95cf5db820bbc09475eb88f614d11940e95e /src/core/hle/kernel/thread.h
parentMerge pull request #2393 from Subv/synch (diff)
downloadyuzu-5e2a8ebabf52fc05eca41cafad1c85478a0c5dbb.tar.gz
yuzu-5e2a8ebabf52fc05eca41cafad1c85478a0c5dbb.tar.xz
yuzu-5e2a8ebabf52fc05eca41cafad1c85478a0c5dbb.zip
Kernel: Remove some unused functions.
Diffstat (limited to 'src/core/hle/kernel/thread.h')
-rw-r--r--src/core/hle/kernel/thread.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h
index af72b76ea..6d395585d 100644
--- a/src/core/hle/kernel/thread.h
+++ b/src/core/hle/kernel/thread.h
@@ -246,15 +246,6 @@ Thread* GetCurrentThread();
246void WaitCurrentThread_Sleep(); 246void WaitCurrentThread_Sleep();
247 247
248/** 248/**
249 * Waits the current thread from a WaitSynchronization call
250 * @param wait_objects Kernel objects that we are waiting on
251 * @param wait_set_output If true, set the output parameter on thread wakeup (for
252 * WaitSynchronizationN only)
253 */
254void WaitCurrentThread_WaitSynchronization(std::vector<SharedPtr<WaitObject>> wait_objects,
255 bool wait_set_output);
256
257/**
258 * Waits the current thread from an ArbitrateAddress call 249 * Waits the current thread from an ArbitrateAddress call
259 * @param wait_address Arbitration address used to resume from wait 250 * @param wait_address Arbitration address used to resume from wait
260 */ 251 */