|
From: <sv...@va...> - 2015-10-23 02:36:16
|
Author: zliu
Date: Fri Oct 23 03:36:09 2015
New Revision: 15717
Log:
Disable none/tests/bug234814 test for TileGx.
Add "bool on_altstack" parameter to VG_(sigframe_create)(..)
in sigframe-tilegx-linux.c
Modified:
trunk/coregrind/m_sigframe/sigframe-tilegx-linux.c
trunk/none/tests/bug234814.vgtest
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 Fri Oct 23 03:36:09 2015
@@ -137,6 +137,7 @@
/* EXPORTED */
void VG_(sigframe_create)( ThreadId tid,
+ Bool on_altstack,
Addr sp_top_of_frame,
const vki_siginfo_t *siginfo,
const struct vki_ucontext *siguc,
@@ -236,10 +237,6 @@
tst->arch.vex.guest_pc = (Addr) handler;
/* This thread needs to be marked runnable, but we leave that the
caller to do. */
- if (0)
- VG_(printf)("pushed signal frame; sp now = %lx, "
- "next %pc = %lx, status=%d\n",
- (Addr)frame, tst->arch.vex.guest_pc, (Int)tst->status);
}
/* EXPORTED */
Modified: trunk/none/tests/bug234814.vgtest
==============================================================================
--- trunk/none/tests/bug234814.vgtest (original)
+++ trunk/none/tests/bug234814.vgtest Fri Oct 23 03:36:09 2015
@@ -1 +1,2 @@
+prereq: ! ../../tests/arch_test tilegx
prog: bug234814
|