|
From: <sv...@va...> - 2006-09-30 10:33:23
|
Author: sewardj
Date: 2006-09-30 11:33:20 +0100 (Sat, 30 Sep 2006)
New Revision: 6094
Log:
Track return type change for VG_(am_find_nsegment) (extra const-ness)
Modified:
branches/AIX5/coregrind/m_sigframe/sigframe-amd64-linux.c
branches/AIX5/coregrind/m_sigframe/sigframe-ppc32-linux.c
branches/AIX5/coregrind/m_sigframe/sigframe-ppc64-linux.c
branches/AIX5/coregrind/m_sigframe/sigframe-x86-linux.c
Modified: branches/AIX5/coregrind/m_sigframe/sigframe-amd64-linux.c
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- branches/AIX5/coregrind/m_sigframe/sigframe-amd64-linux.c 2006-09-30 =
10:26:03 UTC (rev 6093)
+++ branches/AIX5/coregrind/m_sigframe/sigframe-amd64-linux.c 2006-09-30 =
10:33:20 UTC (rev 6094)
@@ -375,7 +375,7 @@
static Bool extend ( ThreadState *tst, Addr addr, SizeT size )
{
ThreadId tid =3D tst->tid;
- NSegment *stackseg =3D NULL;
+ NSegment const* stackseg =3D NULL;
=20
if (VG_(extend_stack)(addr, tst->client_stack_szB)) {
stackseg =3D VG_(am_find_nsegment)(addr);
Modified: branches/AIX5/coregrind/m_sigframe/sigframe-ppc32-linux.c
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- branches/AIX5/coregrind/m_sigframe/sigframe-ppc32-linux.c 2006-09-30 =
10:26:03 UTC (rev 6093)
+++ branches/AIX5/coregrind/m_sigframe/sigframe-ppc32-linux.c 2006-09-30 =
10:33:20 UTC (rev 6094)
@@ -32,6 +32,8 @@
*/
=20
#include "pub_core_basics.h"
+#include "pub_core_vki.h"
+#include "pub_core_vkiscnums.h"
#include "pub_core_threadstate.h"
#include "pub_core_aspacemgr.h"
#include "pub_core_libcbase.h"
@@ -44,7 +46,6 @@
#include "pub_core_tooliface.h"
#include "pub_core_trampoline.h"
#include "pub_core_transtab.h" // VG_(discard_translations)
-#include "vki_unistd-ppc32-linux.h" // __NR_rt_sigreturn
=20
=20
/* This module creates and removes signal frames for signal deliveries
@@ -493,7 +494,7 @@
static Bool extend ( ThreadState *tst, Addr addr, SizeT size )
{
ThreadId tid =3D tst->tid;
- NSegment *stackseg =3D NULL;
+ NSegment const *stackseg =3D NULL;
=20
if (VG_(extend_stack)(addr, tst->client_stack_szB)) {
stackseg =3D VG_(am_find_nsegment)(addr);
Modified: branches/AIX5/coregrind/m_sigframe/sigframe-ppc64-linux.c
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- branches/AIX5/coregrind/m_sigframe/sigframe-ppc64-linux.c 2006-09-30 =
10:26:03 UTC (rev 6093)
+++ branches/AIX5/coregrind/m_sigframe/sigframe-ppc64-linux.c 2006-09-30 =
10:33:20 UTC (rev 6094)
@@ -32,6 +32,8 @@
*/
=20
#include "pub_core_basics.h"
+#include "pub_core_vki.h"
+#include "pub_core_vkiscnums.h"
#include "pub_core_threadstate.h"
#include "pub_core_aspacemgr.h"
#include "pub_core_libcbase.h"
@@ -44,7 +46,6 @@
#include "pub_core_tooliface.h"
#include "pub_core_trampoline.h"
#include "pub_core_transtab.h" // VG_(discard_translations)
-#include "vki_unistd-ppc64-linux.h" // __NR_rt_sigreturn
=20
=20
/* This module creates and removes signal frames for signal deliveries
@@ -133,7 +134,7 @@
static Bool extend ( ThreadState *tst, Addr addr, SizeT size )
{
ThreadId tid =3D tst->tid;
- NSegment *stackseg =3D NULL;
+ NSegment const *stackseg =3D NULL;
=20
if (VG_(extend_stack)(addr, tst->client_stack_szB)) {
stackseg =3D VG_(am_find_nsegment)(addr);
Modified: branches/AIX5/coregrind/m_sigframe/sigframe-x86-linux.c
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- branches/AIX5/coregrind/m_sigframe/sigframe-x86-linux.c 2006-09-30 10=
:26:03 UTC (rev 6093)
+++ branches/AIX5/coregrind/m_sigframe/sigframe-x86-linux.c 2006-09-30 10=
:33:20 UTC (rev 6094)
@@ -30,6 +30,7 @@
*/
=20
#include "pub_core_basics.h"
+#include "pub_core_vki.h"
#include "pub_core_threadstate.h"
#include "pub_core_aspacemgr.h" /* find_segment */
#include "pub_core_libcbase.h"
@@ -37,10 +38,10 @@
#include "pub_core_libcprint.h"
#include "pub_core_machine.h"
#include "pub_core_options.h"
-#include "pub_core_sigframe.h"
#include "pub_core_signals.h"
#include "pub_core_tooliface.h"
#include "pub_core_trampoline.h"
+#include "pub_core_sigframe.h" /* self */
=20
=20
/* This module creates and removes signal frames for signal deliveries
@@ -395,7 +396,7 @@
static Bool extend ( ThreadState *tst, Addr addr, SizeT size )
{
ThreadId tid =3D tst->tid;
- NSegment *stackseg =3D NULL;
+ NSegment const* stackseg =3D NULL;
=20
if (VG_(extend_stack)(addr, tst->client_stack_szB)) {
stackseg =3D VG_(am_find_nsegment)(addr);
|