summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/hle_ipc.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-12-12 01:45:27 +0100
committerbunnei <bunneidev@gmail.com>2020-12-29 01:33:48 +0100
commit5d4715cc6af424e8529de5ac1a11d1cca3b3f7cf (patch)
tree9e803d2c7269786559c6fedb16a995228d285ea8 /src/core/hle/kernel/hle_ipc.h
parenthle: service: bsd: Update to work with service threads, removing SleepClientThread. (diff)
downloadyuzu-5d4715cc6af424e8529de5ac1a11d1cca3b3f7cf.tar
yuzu-5d4715cc6af424e8529de5ac1a11d1cca3b3f7cf.tar.gz
yuzu-5d4715cc6af424e8529de5ac1a11d1cca3b3f7cf.tar.bz2
yuzu-5d4715cc6af424e8529de5ac1a11d1cca3b3f7cf.tar.lz
yuzu-5d4715cc6af424e8529de5ac1a11d1cca3b3f7cf.tar.xz
yuzu-5d4715cc6af424e8529de5ac1a11d1cca3b3f7cf.tar.zst
yuzu-5d4715cc6af424e8529de5ac1a11d1cca3b3f7cf.zip
Diffstat (limited to 'src/core/hle/kernel/hle_ipc.h')
-rw-r--r--src/core/hle/kernel/hle_ipc.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/core/hle/kernel/hle_ipc.h b/src/core/hle/kernel/hle_ipc.h
index c31a65476..b112e1ebd 100644
--- a/src/core/hle/kernel/hle_ipc.h
+++ b/src/core/hle/kernel/hle_ipc.h
@@ -129,23 +129,6 @@ public:
using WakeupCallback = std::function<void(
std::shared_ptr<Thread> thread, HLERequestContext& context, ThreadWakeupReason reason)>;
- /**
- * Puts the specified guest thread to sleep until the returned event is signaled or until the
- * specified timeout expires.
- * @param reason Reason for pausing the thread, to be used for debugging purposes.
- * @param timeout Timeout in nanoseconds after which the thread will be awoken and the callback
- * invoked with a Timeout reason.
- * @param callback Callback to be invoked when the thread is resumed. This callback must write
- * the entire command response once again, regardless of the state of it before this function
- * was called.
- * @param writable_event Event to use to wake up the thread. If unspecified, an event will be
- * created.
- * @returns Event that when signaled will resume the thread and call the callback function.
- */
- std::shared_ptr<WritableEvent> SleepClientThread(
- const std::string& reason, u64 timeout, WakeupCallback&& callback,
- std::shared_ptr<WritableEvent> writable_event = nullptr);
-
/// Populates this context with data from the requesting process/thread.
ResultCode PopulateFromIncomingCommandBuffer(const HandleTable& handle_table,
u32_le* src_cmdbuf);