|
From: <sv...@va...> - 2017-01-29 16:11:27
|
Author: philippe
Date: Sun Jan 29 16:11:19 2017
New Revision: 16214
Log:
Samll changes on xtree leak event short names
Modified:
trunk/memcheck/docs/mc-manual.xml
trunk/memcheck/mc_leakcheck.c
Modified: trunk/memcheck/docs/mc-manual.xml
==============================================================================
--- trunk/memcheck/docs/mc-manual.xml (original)
+++ trunk/memcheck/docs/mc-manual.xml Sun Jan 29 16:11:19 2017
@@ -896,7 +896,7 @@
<listitem><para><option>PB</option> : Possibly lost Bytes</para></listitem>
<listitem><para><option>IB</option> : Indirectly lost Bytes</para></listitem>
<listitem><para><option>DB</option> : Definitely lost Bytes (direct plus indirect)</para></listitem>
- <listitem><para><option>DiB</option> : Definitely indirectly lost Bytes (subset of DB)</para></listitem>
+ <listitem><para><option>DIB</option> : Definitely Indirectly lost Bytes (subset of DB)</para></listitem>
<listitem><para><option>RBk</option> : reachable Blocks</para></listitem>
<listitem><para><option>PBk</option> : Possibly lost Blocks</para></listitem>
<listitem><para><option>IBk</option> : Indirectly lost Blocks</para></listitem>
Modified: trunk/memcheck/mc_leakcheck.c
==============================================================================
--- trunk/memcheck/mc_leakcheck.c (original)
+++ trunk/memcheck/mc_leakcheck.c Sun Jan 29 16:11:19 2017
@@ -1438,10 +1438,10 @@
"DB : Definitely lost Bytes (direct plus indirect)" ","
////// XT_Value indirect_szB
- // no RiB
- // no PiB
- // no IiB
- "DiB : Definitely indirectly lost Bytes (subset of DB)" ","
+ // no RIB
+ // no PIB
+ // no IIB
+ "DIB : Definitely Indirectly lost Bytes (subset of DB)" ","
////// XT_Value num_blocks
"RBk : reachable Blocks" ","
@@ -1456,10 +1456,10 @@
"iDB : increase Definitely lost Bytes" ","
////// XT_Increase indirect_szB
- // no iRiB
- // no iPiB
- // no iIiB
- "iDiB : increase Definitely indirectly lost Bytes" ","
+ // no iRIB
+ // no iPIB
+ // no iIIB
+ "iDIB : increase Definitely Indirectly lost Bytes" ","
////// XT_Increase num_blocks
"iRBk : increase reachable Blocks" ","
@@ -1475,10 +1475,10 @@
"dDB : decrease Definitely lost Bytes" ","
////// XT_Decrease indirect_szB
- // no dRiB
- // no dPiB
- // no dIiB
- "dDiB : decrease Definitely indirectly lost Bytes" ","
+ // no dRIB
+ // no dPIB
+ // no dIIB
+ "dDIB : decrease Definitely Indirectly lost Bytes" ","
////// XT_Decrease num_blocks
"dRBk : decrease reachable Blocks" ","
|