diff options
author | bunnei <ericbunnie@gmail.com> | 2014-06-05 00:26:48 -0400 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-06-05 00:26:48 -0400 |
commit | 174cc9a0ed023ca89420fbc999ed82337cc94b8b (patch) | |
tree | 77880fcb4200aea1921919dc850f1f90897a9657 /src/core/hle/hle.h | |
parent | 6cdad8390c20aed5c526916816388831d71213a2 (diff) |
hle: added a hokey way to force a thread reschedule during CPU single step mode (as used by the debugger)
Diffstat (limited to 'src/core/hle/hle.h')
-rw-r--r-- | src/core/hle/hle.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/hle.h b/src/core/hle/hle.h index 9bc4bfd2c..8a59020c2 100644 --- a/src/core/hle/hle.h +++ b/src/core/hle/hle.h @@ -16,6 +16,8 @@ namespace HLE { +extern bool g_reschedule; ///< If true, immediately reschedules the CPU to a new thread + typedef u32 Addr; typedef void (*Func)(); |