|
From: <sv...@va...> - 2009-07-22 07:22:59
|
Author: bart
Date: 2009-07-22 08:22:48 +0100 (Wed, 22 Jul 2009)
New Revision: 10518
Log:
Renamed --var-info to --read-var-info.
Modified:
trunk/drd/docs/drd-manual.xml
trunk/drd/drd_main.c
Modified: trunk/drd/docs/drd-manual.xml
===================================================================
--- trunk/drd/docs/drd-manual.xml 2009-07-22 05:27:31 UTC (rev 10517)
+++ trunk/drd/docs/drd-manual.xml 2009-07-22 07:22:48 UTC (rev 10518)
@@ -458,7 +458,7 @@
</varlistentry>
<varlistentry>
<term>
- <option><![CDATA[--var-info=<yes|no> [default: no]]]></option>
+ <option><![CDATA[--read-var-info=<yes|no> [default: no]]]></option>
</term>
<listitem>
<para>
Modified: trunk/drd/drd_main.c
===================================================================
--- trunk/drd/drd_main.c 2009-07-22 05:27:31 UTC (rev 10517)
+++ trunk/drd/drd_main.c 2009-07-22 07:22:48 UTC (rev 10518)
@@ -110,6 +110,7 @@
else if VG_BOOL_CLO(arg, "--trace-segment", trace_segment) {}
else if VG_BOOL_CLO(arg, "--trace-semaphore", trace_semaphore) {}
else if VG_BOOL_CLO(arg, "--trace-suppr", trace_suppression) {}
+ else if VG_BOOL_CLO(arg, "--read-var-info", DRD_(s_var_info)) {}
else if VG_BOOL_CLO(arg, "--var-info", DRD_(s_var_info)) {}
else if VG_INT_CLO (arg, "--exclusive-threshold", exclusive_threshold_ms) {}
else if VG_INT_CLO (arg, "--shared-threshold", shared_threshold_ms) {}
@@ -199,7 +200,7 @@
" is held longer than the specified time (in milliseconds).\n"
" --show-confl-seg=yes|no Show conflicting segments in race reports [yes].\n"
" --show-stack-usage=yes|no Print stack usage at thread exit time [no].\n"
-" --var-info=yes|no Display the names of global, static and\n"
+" --read-var-info=yes|no Display the names of global, static and\n"
" stack variables when a race is reported on such a variable. This\n"
" information is by default not displayed since for big programs\n"
" reading in all debug information at once may cause an out of\n"
|