]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Move VG_(clo_backtrace_size) to a tool-visible header file.
authorJulian Seward <jseward@acm.org>
Wed, 9 Jan 2008 18:37:41 +0000 (18:37 +0000)
committerJulian Seward <jseward@acm.org>
Wed, 9 Jan 2008 18:37:41 +0000 (18:37 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@7331

coregrind/pub_core_options.h
include/pub_tool_options.h

index 4c53df6c37cd2b55cb15fad644e8578dbe804ede..83d581b686d0b815327a4850d5ff7b3c47aac2ef 100644 (file)
@@ -131,8 +131,6 @@ extern Bool  VG_(clo_trace_pthreads);
 /* Display gory details for the k'th most popular error.  default:
    Infinity. */
 extern Int   VG_(clo_dump_error);
-/* Number of parents of a backtrace.  Default: 8.  */
-extern Int   VG_(clo_backtrace_size);
 /* Engage miscellaneous weird hacks needed for some progs. */
 extern Char* VG_(clo_sim_hints);
 /* Show symbols in the form 'name+offset' ?  Default: NO */
index ed5c37ea4ad90f90ed76b449f530402ec0289165..abea3200850204651cbddb720be46da9e9fb26f7 100644 (file)
@@ -116,6 +116,9 @@ extern HChar* VG_(clo_xml_user_comment);
    less aggressively if that is needed (callgrind needs this). */
 extern VexControl VG_(clo_vex_control);
 
+/* Number of parents of a backtrace.  Default: 8.  */
+extern Int   VG_(clo_backtrace_size);
+
 /* Call this if a recognised option was bad for some reason.  Note:
    don't use it just because an option was unrecognised -- return
    'False' from VG_(tdict).tool_process_cmd_line_option) to indicate