Whitespace/comment-only changes, to serve as placeholder for the last commit

which I put the wrong log message in for.  The log message should have been:

  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 any
  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.



git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3832
This commit is contained in:
Nicholas Nethercote 2005-06-01 00:03:17 +00:00
parent b8b5c5c7e2
commit 106cd10f92
4 changed files with 6 additions and 5 deletions

View File

@ -3,7 +3,7 @@
/*--- A header file for various private parts of Valgrind's core. ---*/
/*--- core.h ---*/
/*--------------------------------------------------------------------*/
/*
This file is part of Valgrind, a dynamic binary instrumentation
framework.

View File

@ -1,8 +1,8 @@
/*--------------------------------------------------------------------*/
/*--- Implementation of POSIX signals. vg_signals.c ---*/
/*--- Implementation of POSIX signals. m_signals.c ---*/
/*--------------------------------------------------------------------*/
/*
This file is part of Valgrind, a dynamic binary instrumentation
framework.
@ -2080,5 +2080,5 @@ void VG_(sigstartup_actions) ( void )
}
/*--------------------------------------------------------------------*/
/*--- end vg_signals.c ---*/
/*--- end ---*/
/*--------------------------------------------------------------------*/

View File

@ -1,3 +1,4 @@
/*--------------------------------------------------------------------*/
/*--- ExeContexts: long-lived, non-dup'd stack traces. ---*/
/*--- pub_core_execontext.h ---*/

View File

@ -4,7 +4,7 @@
/*--- on libc.so. ---*/
/*--- vg_mylibc.c ---*/
/*--------------------------------------------------------------------*/
/*
This file is part of Valgrind, a dynamic binary instrumentation
framework.