|
From: <sv...@va...> - 2005-06-01 00:03:21
|
Author: njn
Date: 2005-06-01 01:03:17 +0100 (Wed, 01 Jun 2005)
New Revision: 3832
Modified:
trunk/coregrind/core.h
trunk/coregrind/m_signals.c
trunk/coregrind/pub_core_execontext.h
trunk/coregrind/vg_mylibc.c
Log:
Whitespace/comment-only changes, to serve as placeholder for the last com=
mit
which I put the wrong log message in for. The log message should have be=
en:
Clean up VG_(core_panic_at)() -- pass it ip/sp/fp rather than a
StackTrace. This allows m_signals.c to not have to know about
m_stacktrace.c, nor does core.h need to import pub_core_stacktrace.h an=
y
more. (Also fixed a bug that was preventing vg_assert2's extra string
from being printed.)
Also moved VG_DEEPEST_BACKTRACE out of core.h into pub_core_execontext.=
h.
Modified: trunk/coregrind/core.h
=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
--- trunk/coregrind/core.h 2005-06-01 00:00:46 UTC (rev 3831)
+++ trunk/coregrind/core.h 2005-06-01 00:03:17 UTC (rev 3832)
@@ -3,7 +3,7 @@
/*--- A header file for various private parts of Valgrind's core. ---*/
/*--- core.h ---*/
/*--------------------------------------------------------------------*/
-
+=20
/*
This file is part of Valgrind, a dynamic binary instrumentation
framework.
Modified: trunk/coregrind/m_signals.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
--- trunk/coregrind/m_signals.c 2005-06-01 00:00:46 UTC (rev 3831)
+++ trunk/coregrind/m_signals.c 2005-06-01 00:03:17 UTC (rev 3832)
@@ -1,8 +1,8 @@
=20
/*--------------------------------------------------------------------*/
-/*--- Implementation of POSIX signals. vg_signals.c ---*/
+/*--- Implementation of POSIX signals. m_signals.c ---*/
/*--------------------------------------------------------------------*/
-
+=20
/*
This file is part of Valgrind, a dynamic binary instrumentation
framework.
@@ -2080,5 +2080,5 @@
}
=20
/*--------------------------------------------------------------------*/
-/*--- end vg_signals.c ---*/
+/*--- end ---*/
/*--------------------------------------------------------------------*/
Modified: trunk/coregrind/pub_core_execontext.h
=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
--- trunk/coregrind/pub_core_execontext.h 2005-06-01 00:00:46 UTC (rev 38=
31)
+++ trunk/coregrind/pub_core_execontext.h 2005-06-01 00:03:17 UTC (rev 38=
32)
@@ -1,3 +1,4 @@
+
/*--------------------------------------------------------------------*/
/*--- ExeContexts: long-lived, non-dup'd stack traces. ---*/
/*--- pub_core_execontext.h ---*/
Modified: trunk/coregrind/vg_mylibc.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
--- trunk/coregrind/vg_mylibc.c 2005-06-01 00:00:46 UTC (rev 3831)
+++ trunk/coregrind/vg_mylibc.c 2005-06-01 00:03:17 UTC (rev 3832)
@@ -4,7 +4,7 @@
/*--- on libc.so. ---*/
/*--- vg_mylibc.c ---*/
/*--------------------------------------------------------------------*/
-
+=20
/*
This file is part of Valgrind, a dynamic binary instrumentation
framework.
|