summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/event.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-01-15 05:33:37 +0100
committerbunnei <bunneidev@gmail.com>2015-01-22 00:42:04 +0100
commit14cbbf4d9b8e07f9f2d679bcf66c2180463ae57c (patch)
treef4a942c3b72d8df5186ad8bfe0a99fdbe2644dd5 /src/core/hle/kernel/event.h
parentWaitObject: Added RemoveWaitingThread, fixed a bug, and cleanup. (diff)
downloadyuzu-14cbbf4d9b8e07f9f2d679bcf66c2180463ae57c.tar
yuzu-14cbbf4d9b8e07f9f2d679bcf66c2180463ae57c.tar.gz
yuzu-14cbbf4d9b8e07f9f2d679bcf66c2180463ae57c.tar.bz2
yuzu-14cbbf4d9b8e07f9f2d679bcf66c2180463ae57c.tar.lz
yuzu-14cbbf4d9b8e07f9f2d679bcf66c2180463ae57c.tar.xz
yuzu-14cbbf4d9b8e07f9f2d679bcf66c2180463ae57c.tar.zst
yuzu-14cbbf4d9b8e07f9f2d679bcf66c2180463ae57c.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/event.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/core/hle/kernel/event.h b/src/core/hle/kernel/event.h
index da793df1a..b1b9d4b7b 100644
--- a/src/core/hle/kernel/event.h
+++ b/src/core/hle/kernel/event.h
@@ -19,13 +19,6 @@ namespace Kernel {
ResultCode SetEventLocked(const Handle handle, const bool locked);
/**
- * Hackish function to set an events permanent lock state, used to pass through synch blocks
- * @param handle Handle to event to change
- * @param permanent_locked Boolean permanent locked value to set event
- */
-ResultCode SetPermanentLock(Handle handle, const bool permanent_locked);
-
-/**
* Signals an event
* @param handle Handle to event to signal
*/