summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsewardj <sewardj@a5019735-40e9-0310-863c-91ae7b9d1cf9>2005-03-26 13:33:27 +0000
committersewardj <sewardj@a5019735-40e9-0310-863c-91ae7b9d1cf9>2005-03-26 13:33:27 +0000
commit5d505669aea0f07c4d2802769bcf75903c6233a0 (patch)
tree7e49e29ca4980f58160955d95f527243636a317c
parent606380e2e2c48c2bf02d7a415b5ac5f1d58b0ca5 (diff)
Unbreak amd64 build. We need to have an overnight autobuild running
on amd64 asap. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3441 a5019735-40e9-0310-863c-91ae7b9d1cf9
-rw-r--r--coregrind/amd64-linux/syscalls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coregrind/amd64-linux/syscalls.c b/coregrind/amd64-linux/syscalls.c
index da358286..6f749970 100644
--- a/coregrind/amd64-linux/syscalls.c
+++ b/coregrind/amd64-linux/syscalls.c
@@ -198,7 +198,7 @@ static ULong *allocstack(ThreadId tid)
if (stk != (void *)-1) {
VG_(mprotect)(stk, VKI_PAGE_SIZE, VKI_PROT_NONE); /* guard page */
tst->os_state.stack = (UInt *)stk + VKI_PAGE_SIZE/sizeof(UInt);
- tst->os_state.stacksize = VG_STACK_SIZE_W;
+ tst->os_state.stacksize = VGA_STACK_SIZE_W;
} else
return (ULong *)-1;
}