|
From: <sv...@va...> - 2015-04-15 21:46:05
|
Author: florian
Date: Wed Apr 15 22:45:57 2015
New Revision: 15100
Log:
Fix function call: 1st argument is the thread id.
Modified:
trunk/coregrind/m_sigframe/sigframe-tilegx-linux.c
Modified: trunk/coregrind/m_sigframe/sigframe-tilegx-linux.c
==============================================================================
--- trunk/coregrind/m_sigframe/sigframe-tilegx-linux.c (original)
+++ trunk/coregrind/m_sigframe/sigframe-tilegx-linux.c Wed Apr 15 22:45:57 2015
@@ -76,7 +76,7 @@
ThreadId tid = tst->tid;
NSegment const* stackseg = NULL;
- if (VG_(extend_stack)(addr, addr))
+ if (VG_(extend_stack)(tid, addr))
stackseg = VG_(am_find_nsegment)(addr);
if (stackseg == NULL || !stackseg->hasR || !stackseg->hasW)
|