aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/kernel/thread.h
diff options
context:
space:
mode:
authorGravatar bunnei <ericbunnie@gmail.com>2014-05-22 19:32:45 -0400
committerGravatar bunnei <ericbunnie@gmail.com>2014-05-22 19:32:45 -0400
commit7c0b0060764e75738bc9d4417d0bfd510e54ae4e (patch)
treefef5fa5c699f01731d6549f22601e9d8f5d88465 /src/core/hle/kernel/thread.h
parentd26f3d4c1ff27f740fe7185e1bca7dcfc5851919 (diff)
thread: removed unused SwitchContext/Reschedule reason field, added missing arg parameter to SVC CreateThread
Diffstat (limited to 'src/core/hle/kernel/thread.h')
-rw-r--r--src/core/hle/kernel/thread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h
index a9e9eb95..d54f47aa 100644
--- a/src/core/hle/kernel/thread.h
+++ b/src/core/hle/kernel/thread.h
@@ -51,7 +51,7 @@ Handle CreateThread(const char* name, u32 entry_point, s32 priority, u32 arg, s3
Handle SetupMainThread(s32 priority, int stack_size=Kernel::DEFAULT_STACK_SIZE);
/// Reschedules to the next available thread (call after current thread is suspended)
-void Reschedule(const char* reason);
+void Reschedule();
/// Puts a thread in the wait state for the given type/reason
void WaitCurThread(WaitType wait_type, const char* reason);