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

Unified Diff: src/trusted/service_runtime/nacl_syscall_common.c

Issue 12460003: [MIPS] Leave room for frame header on stack for MIPS arch (Closed) Base URL: http://git.chromium.org/native_client/src/native_client.git@master
Patch Set: Rename NACL_STACK_ARG_SIZE to NACL_STACK_ARGS_SIZE. Created 7 years, 9 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/nacl_config.h ('k') | src/trusted/service_runtime/posix/nacl_signal.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/trusted/service_runtime/nacl_syscall_common.c
diff --git a/src/trusted/service_runtime/nacl_syscall_common.c b/src/trusted/service_runtime/nacl_syscall_common.c
index ae4b4649df35e7f0131fc71ccefcbb2d7060e27e..e41b45203dedd92ae37c803dcb405c58274a4f41 100644
--- a/src/trusted/service_runtime/nacl_syscall_common.c
+++ b/src/trusted/service_runtime/nacl_syscall_common.c
@@ -2455,7 +2455,8 @@ int32_t NaClSysThreadCreate(struct NaClAppThread *natp,
/* Align the stack pointer. */
stack_ptr = ((stack_ptr + NACL_STACK_PAD_BELOW_ALIGN)
- & ~NACL_STACK_ALIGN_MASK) - NACL_STACK_PAD_BELOW_ALIGN;
+ & ~NACL_STACK_ALIGN_MASK) - NACL_STACK_PAD_BELOW_ALIGN
+ - NACL_STACK_ARGS_SIZE;
sys_stack = NaClUserToSysAddr(nap, stack_ptr);
if (kNaClBadAddress == sys_stack) {
« no previous file with comments | « src/trusted/service_runtime/nacl_config.h ('k') | src/trusted/service_runtime/posix/nacl_signal.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698