diff options
| author | bunnei <bunneidev@gmail.com> | 2015-01-09 12:59:35 -0500 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2015-01-09 12:59:35 -0500 |
| commit | 6ae12424df58f0ea171fc75ca4b700ab1fffc192 (patch) | |
| tree | 93d87f3cb19d08541c6b8f8a9e0ceb730a2b13d9 /src/core/arm/dyncom/arm_dyncom.h | |
| parent | 86e07124adcbe0ec8f35740d3ac2d516dc07f771 (diff) | |
| parent | 78ea76e12f22495b3b726a19147b60b2eaf50a9d (diff) | |
Merge pull request #444 from yuriks/handle-reform2
Kernel Lifetime Reform Pt. 2
Diffstat (limited to 'src/core/arm/dyncom/arm_dyncom.h')
| -rw-r--r-- | src/core/arm/dyncom/arm_dyncom.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/arm/dyncom/arm_dyncom.h b/src/core/arm/dyncom/arm_dyncom.h index 9e102a46e..f16fb070c 100644 --- a/src/core/arm/dyncom/arm_dyncom.h +++ b/src/core/arm/dyncom/arm_dyncom.h @@ -71,13 +71,13 @@ public: * Saves the current CPU context * @param ctx Thread context to save */ - void SaveContext(ThreadContext& ctx) override; + void SaveContext(Core::ThreadContext& ctx) override; /** * Loads a CPU context * @param ctx Thread context to load */ - void LoadContext(const ThreadContext& ctx) override; + void LoadContext(const Core::ThreadContext& ctx) override; /// Prepare core for thread reschedule (if needed to correctly handle state) void PrepareReschedule() override; |
