Rename the first three modules as per naming scheme.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3555
This commit is contained in:
Julian Seward 2005-04-24 12:33:12 +00:00
parent b277eef67d
commit 4ea28e5187
4 changed files with 11 additions and 9 deletions

View File

@ -52,9 +52,9 @@ valgrind_LDFLAGS=-static -g
valgrind_LDADD=
stage2_SOURCES = \
errormgr.c \
execontext.c \
stacktrace.c \
m_errormgr.c \
m_execontext.c \
m_stacktrace.c \
ume.c \
\
vg_scheduler.c \

View File

@ -1,6 +1,6 @@
/*--------------------------------------------------------------------*/
/*--- Management of error messages. errormgr.c ---*/
/*--- Management of error messages. m_errormgr.c ---*/
/*--------------------------------------------------------------------*/
/*
@ -1027,5 +1027,5 @@ static Supp* is_suppressible_error ( Error* err )
}
/*--------------------------------------------------------------------*/
/*--- end ---*/
/*--- end m_errormgr.c ---*/
/*--------------------------------------------------------------------*/

View File

@ -1,5 +1,6 @@
/*--------------------------------------------------------------------*/
/*--- execontext.c ---*/
/*--- Store and compare stack backtraces m_execontext.c ---*/
/*--------------------------------------------------------------------*/
/*
@ -252,5 +253,5 @@ StackTrace VG_(extract_StackTrace) ( ExeContext* e )
}
/*--------------------------------------------------------------------*/
/*--- end ---*/
/*--- end m_execontext.c ---*/
/*--------------------------------------------------------------------*/

View File

@ -1,5 +1,6 @@
/*--------------------------------------------------------------------*/
/*--- stacktrace.c ---*/
/*--- Take snapshots of client stacks. m_stacktrace.c ---*/
/*--------------------------------------------------------------------*/
/*
@ -200,5 +201,5 @@ void VG_(apply_StackTrace)( void(*action)(UInt n, Addr ip),
/*--------------------------------------------------------------------*/
/*--- end ---*/
/*--- end m_stacktrace.c ---*/
/*--------------------------------------------------------------------*/