Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(923)

Unified Diff: src/trusted/service_runtime/arch/arm/nacl_switch_to_app_arm.c

Issue 10806080: ARM: Rename the "new_eip" field in NaClThreadContext to "new_prog_ctr" (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Rebase + copyright Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/trusted/service_runtime/arch/arm/nacl_switch.S ('k') | src/trusted/service_runtime/arch/arm/sel_rt.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/trusted/service_runtime/arch/arm/nacl_switch_to_app_arm.c
diff --git a/src/trusted/service_runtime/arch/arm/nacl_switch_to_app_arm.c b/src/trusted/service_runtime/arch/arm/nacl_switch_to_app_arm.c
index d8d5e1e41a14ef2e1be276f0e5594c972e44f911..5517604ebad9b4831d36d157212c107f23545ab8 100644
--- a/src/trusted/service_runtime/arch/arm/nacl_switch_to_app_arm.c
+++ b/src/trusted/service_runtime/arch/arm/nacl_switch_to_app_arm.c
@@ -32,7 +32,7 @@ NORETURN void NaClStartThreadInApp(struct NaClAppThread *natp,
nap = natp->nap;
context = &natp->user;
- context->new_eip = new_prog_ctr;
+ context->new_prog_ctr = new_prog_ctr;
/*
* At startup this is not the return value, but the first argument.
@@ -63,7 +63,7 @@ NORETURN void NaClSwitchToApp(struct NaClAppThread *natp,
nap = natp->nap;
context = &natp->user;
- context->new_eip = new_prog_ctr;
+ context->new_prog_ctr = new_prog_ctr;
context->sysret = natp->sysret;
NaClSwitch(context);
« no previous file with comments | « src/trusted/service_runtime/arch/arm/nacl_switch.S ('k') | src/trusted/service_runtime/arch/arm/sel_rt.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698