From: Bart Van Assche Date: Fri, 27 Jun 2008 15:00:07 +0000 (+0000) Subject: Moved --trace-segment from regular to debugging options. X-Git-Tag: svn/VALGRIND_3_4_0~425 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3211ffbf8f123462dc550f364e01bd14102eac11;p=thirdparty%2Fvalgrind.git Moved --trace-segment from regular to debugging options. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@8289 --- diff --git a/exp-drd/drd_main.c b/exp-drd/drd_main.c index 30cc0c5bda..8cad90744e 100644 --- a/exp-drd/drd_main.c +++ b/exp-drd/drd_main.c @@ -196,7 +196,6 @@ static void drd_print_usage(void) " --trace-fork-join=yes|no Trace all thread fork/join activity [no].\n" " --trace-mutex=yes|no Trace all mutex activity [no].\n" " --trace-rwlock=yes|no Trace all reader-writer lock activity[no].\n" -" --trace-segment=yes|no Trace segment actions [no].\n" " --trace-semaphore=yes|no Trace all semaphore activity [no].\n" ); VG_(replacement_malloc_print_usage)(); @@ -209,7 +208,8 @@ static void drd_print_debug_usage(void) " --trace-clientobj=yes|no Trace all client object activity [no].\n" " --trace-csw=yes|no Trace all scheduler context switches [no].\n" " --trace-danger-set=yes|no Trace all danger set updates [no].\n" -" --trace-suppr=yes|no Trace all address suppression actions [no].\n" +" --trace-segment=yes|no Trace segment actions [no].\n" +" --trace-suppr=yes|no Trace all address suppression actions [no].\n" ); VG_(replacement_malloc_print_debug_usage)(); }