|
From: <sv...@va...> - 2006-12-15 04:37:28
|
Author: njn
Date: 2006-12-15 04:37:25 +0000 (Fri, 15 Dec 2006)
New Revision: 6401
Log:
Remove defunct constant.
Modified:
trunk/include/pub_tool_tooliface.h
trunk/memcheck/mc_main.c
Modified: trunk/include/pub_tool_tooliface.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/include/pub_tool_tooliface.h 2006-12-14 03:29:18 UTC (rev 6400)
+++ trunk/include/pub_tool_tooliface.h 2006-12-15 04:37:25 UTC (rev 6401)
@@ -445,7 +445,7 @@
/* Part of the core from which this call was made. Useful for determini=
ng
what kind of error message should be emitted. */
typedef
- enum { Vg_CoreStartup, Vg_CorePThread, Vg_CoreSignal, Vg_CoreSysCall,
+ enum { Vg_CoreStartup, Vg_CoreSignal, Vg_CoreSysCall,
Vg_CoreTranslate, Vg_CoreClientReq }
CorePart;
=20
Modified: trunk/memcheck/mc_main.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/memcheck/mc_main.c 2006-12-14 03:29:18 UTC (rev 6400)
+++ trunk/memcheck/mc_main.c 2006-12-15 04:37:25 UTC (rev 6401)
@@ -2468,7 +2468,6 @@
/*isUnaddr*/True, s );
break;
=20
- case Vg_CorePThread:
case Vg_CoreSignal:
mc_record_core_mem_error( tid, /*isUnaddr*/True, s );
break;
@@ -2496,7 +2495,6 @@
break;
=20
case Vg_CoreClientReq: // Kludge: make this a CoreMemErr
- case Vg_CorePThread:
mc_record_core_mem_error( tid, isUnaddr, s );
break;
=20
|