summaryrefslogtreecommitdiff
path: root/src/core/arm/arm_interface.h
diff options
context:
space:
mode:
authorGravatar Subv2015-05-10 18:43:59 -0500
committerGravatar Subv2015-05-10 18:43:59 -0500
commit115ad8e16a69c8823118f210654fc9ea70a03213 (patch)
tree945fc0617a3329e14f0b4ec3cf2679a0054cbb7b /src/core/arm/arm_interface.h
parentCore/Memory: Give every emulated thread it's own TLS area. (diff)
downloadyuzu-115ad8e16a69c8823118f210654fc9ea70a03213.tar.gz
yuzu-115ad8e16a69c8823118f210654fc9ea70a03213.tar.xz
yuzu-115ad8e16a69c8823118f210654fc9ea70a03213.zip
fixup! Set the TLS address in the scheduler
Diffstat (limited to 'src/core/arm/arm_interface.h')
-rw-r--r--src/core/arm/arm_interface.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/arm/arm_interface.h b/src/core/arm/arm_interface.h
index 976c339e8..85ed2c698 100644
--- a/src/core/arm/arm_interface.h
+++ b/src/core/arm/arm_interface.h
@@ -99,9 +99,8 @@ public:
99 * @param stack_top Pointer to the top of the stack 99 * @param stack_top Pointer to the top of the stack
100 * @param entry_point Entry point for execution 100 * @param entry_point Entry point for execution
101 * @param arg User argument for thread 101 * @param arg User argument for thread
102 * @param tls_address Address of the Thread Local Storage for the thread
103 */ 102 */
104 virtual void ResetContext(Core::ThreadContext& context, u32 stack_top, u32 entry_point, u32 arg, u32 tls_address) = 0; 103 virtual void ResetContext(Core::ThreadContext& context, u32 stack_top, u32 entry_point, u32 arg) = 0;
105 104
106 /** 105 /**
107 * Saves the current CPU context 106 * Saves the current CPU context