|
From: <sv...@va...> - 2007-11-01 10:58:08
|
Author: njn
Date: 2007-11-01 10:58:02 +0000 (Thu, 01 Nov 2007)
New Revision: 7071
Log:
Make Massif abort immediately on the MASSIF2 branch so that people don't try
to use it accidentally -- the trunk version should now be used.
Modified:
branches/MASSIF2/massif/ms_main.c
Modified: branches/MASSIF2/massif/ms_main.c
===================================================================
--- branches/MASSIF2/massif/ms_main.c 2007-11-01 04:44:58 UTC (rev 7070)
+++ branches/MASSIF2/massif/ms_main.c 2007-11-01 10:58:02 UTC (rev 7071)
@@ -2076,6 +2076,12 @@
static void ms_pre_clo_init(void)
{
+ VG_(tool_panic)(
+ "*** *** ***\n"
+ "The MASSIF2 branch was merged into the trunk in revision r7069.\n"
+ "This branch is now dead. Please use Massif from the trunk.\n"
+ "*** *** ***\n");
+
VG_(details_name) ("Massif");
VG_(details_version) (NULL);
VG_(details_description) ("a space profiler");
|