summaryrefslogtreecommitdiff
path: root/src/core/hle/hle.h
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-05-22 22:57:45 -0400
committerbunnei <ericbunnie@gmail.com>2014-05-22 22:57:45 -0400
commit32c314c99290a52f1f870ecf8c677e3792ed09c4 (patch)
tree1cea62bc320d51ebb217e7c361ae10b65b71dd45 /src/core/hle/hle.h
parent9a2e7381e66293929d50b08cc55379c800e74d43 (diff)
parent51f636b3d44e0c963d73cbc4e1a555633980b3fb (diff)
Merge branch 'threading'
Diffstat (limited to 'src/core/hle/hle.h')
-rw-r--r--src/core/hle/hle.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core/hle/hle.h b/src/core/hle/hle.h
index 42f37e29c..c075147c3 100644
--- a/src/core/hle/hle.h
+++ b/src/core/hle/hle.h
@@ -34,7 +34,11 @@ struct ModuleDef {
void RegisterModule(std::string name, int num_functions, const FunctionDef *func_table);
-void CallSyscall(u32 opcode);
+void CallSVC(u32 opcode);
+
+void EatCycles(u32 cycles);
+
+void ReSchedule(const char *reason);
void Init();