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

Unified Diff: src/trusted/service_runtime/arch/arm/sel_rt.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
Index: src/trusted/service_runtime/arch/arm/sel_rt.c
diff --git a/src/trusted/service_runtime/arch/arm/sel_rt.c b/src/trusted/service_runtime/arch/arm/sel_rt.c
index efe046def12de7562ce70b5da3b0c82811f6981d..47831462054e84c4d3e3ced6bbbdf847384a016a 100644
--- a/src/trusted/service_runtime/arch/arm/sel_rt.c
+++ b/src/trusted/service_runtime/arch/arm/sel_rt.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2011 The Native Client Authors. All rights reserved.
+ * Copyright (c) 2012 The Native Client Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
@@ -72,5 +72,5 @@ void NaClThreadContextToSignalContext(const struct NaClThreadContext *th_ctx,
sig_ctx->r12 = 0;
sig_ctx->stack_ptr = th_ctx->stack_ptr;
sig_ctx->lr = 0;
- sig_ctx->prog_ctr = th_ctx->new_eip;
+ sig_ctx->prog_ctr = th_ctx->new_prog_ctr;
}
« no previous file with comments | « src/trusted/service_runtime/arch/arm/sel_rt.h ('k') | src/trusted/service_runtime/arch/x86_32/nacl_switch_32.S » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698