From 4ea28e518739f846436f3efe4299a845c4ce77ac Mon Sep 17 00:00:00 2001 From: Julian Seward Date: Sun, 24 Apr 2005 12:33:12 +0000 Subject: [PATCH] Rename the first three modules as per naming scheme. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3555 --- coregrind/Makefile.am | 6 +++--- coregrind/{errormgr.c => m_errormgr.c} | 4 ++-- coregrind/{execontext.c => m_execontext.c} | 5 +++-- coregrind/{stacktrace.c => m_stacktrace.c} | 5 +++-- 4 files changed, 11 insertions(+), 9 deletions(-) rename coregrind/{errormgr.c => m_errormgr.c} (99%) rename coregrind/{execontext.c => m_execontext.c} (98%) rename coregrind/{stacktrace.c => m_stacktrace.c} (98%) diff --git a/coregrind/Makefile.am b/coregrind/Makefile.am index 596d28434..0f3a3dfe1 100644 --- a/coregrind/Makefile.am +++ b/coregrind/Makefile.am @@ -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 \ diff --git a/coregrind/errormgr.c b/coregrind/m_errormgr.c similarity index 99% rename from coregrind/errormgr.c rename to coregrind/m_errormgr.c index fa61362d0..fc10a3de2 100644 --- a/coregrind/errormgr.c +++ b/coregrind/m_errormgr.c @@ -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 ---*/ /*--------------------------------------------------------------------*/ diff --git a/coregrind/execontext.c b/coregrind/m_execontext.c similarity index 98% rename from coregrind/execontext.c rename to coregrind/m_execontext.c index 5de1dbe92..59ea65c77 100644 --- a/coregrind/execontext.c +++ b/coregrind/m_execontext.c @@ -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 ---*/ /*--------------------------------------------------------------------*/ diff --git a/coregrind/stacktrace.c b/coregrind/m_stacktrace.c similarity index 98% rename from coregrind/stacktrace.c rename to coregrind/m_stacktrace.c index 5821d584d..d43168ee8 100644 --- a/coregrind/stacktrace.c +++ b/coregrind/m_stacktrace.c @@ -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 ---*/ /*--------------------------------------------------------------------*/