|
|
f8560c |
diff -up ltrace-0.7.91/options.c\~ ltrace-0.7.91/options.c
|
|
|
f8560c |
--- ltrace-0.7.91/options.c~ 2013-10-22 11:54:21.000000000 +0200
|
|
|
f8560c |
+++ ltrace-0.7.91/options.c 2014-01-13 15:38:51.362221740 +0100
|
|
|
f8560c |
@@ -128,6 +128,8 @@ usage_debug(void) {
|
|
|
f8560c |
"\n"
|
|
|
f8560c |
"Debugging options are mixed using bitwise-or.\n"
|
|
|
f8560c |
"Note that the meanings and values are subject to change.\n"
|
|
|
f8560c |
+ "Also note that these values are used inconsistently in ltrace, and the\n"
|
|
|
f8560c |
+ "only debuglevel that you can rely on is -D77 that will show everything.\n"
|
|
|
f8560c |
);
|
|
|
f8560c |
}
|
|
|
f8560c |
|
|
|
f8560c |
diff -up ltrace-0.7.91/ltrace.1\~ ltrace-0.7.91/ltrace.1
|
|
|
f8560c |
--- ltrace-0.7.91/ltrace.1~ 2013-10-23 17:44:13.000000000 +0200
|
|
|
f8560c |
+++ ltrace-0.7.91/ltrace.1 2014-01-13 15:51:24.236730677 +0100
|
|
|
f8560c |
@@ -1,5 +1,5 @@
|
|
|
f8560c |
.\" -*-nroff-*-
|
|
|
f8560c |
-.\" Copyright (c) 2012, 2013 Petr Machata, Red Hat Inc.
|
|
|
f8560c |
+.\" Copyright (c) 2012,2013,2014 Petr Machata, Red Hat Inc.
|
|
|
f8560c |
.\" Copyright (c) 1997-2005 Juan Cespedes <cespedes@debian.org>
|
|
|
f8560c |
.\"
|
|
|
f8560c |
.\" This program is free software; you can redistribute it and/or
|
|
|
f8560c |
@@ -118,9 +118,9 @@ Besides removing any initial underscore
|
|
|
f8560c |
this makes C++ function names readable.
|
|
|
f8560c |
.IP "\-D, \-\-debug \fRmask\fI"
|
|
|
f8560c |
Show debugging output of \fBltrace\fR itself. \fImask\fR is a number
|
|
|
f8560c |
-with internal meaning that's not really well defined at all.
|
|
|
f8560c |
-\fImask\fR of 77 shows all debug messages, which is what you usually
|
|
|
f8560c |
-need.
|
|
|
f8560c |
+describing which debug messages should be displayed. Use the option
|
|
|
f8560c |
+\-Dh to see what can be used, but note that currently the only
|
|
|
f8560c |
+reliable debugmask is 77, which shows all debug messages.
|
|
|
f8560c |
.IP "\-e \fIfilter"
|
|
|
f8560c |
A qualifying expression which modifies which library calls to trace.
|
|
|
f8560c |
The format of the filter expression is described in the section
|
|
|
f8560c |
@@ -156,7 +156,8 @@ dependency ordering. If you want to mak
|
|
|
f8560c |
library are actually called, use \fB-x @\fIlibrary_pattern\fR instead.
|
|
|
f8560c |
.IP \-L
|
|
|
f8560c |
When no -e option is given, don't assume the default action of
|
|
|
f8560c |
-\fB@MAIN\fR.
|
|
|
f8560c |
+\fB@MAIN\fR. In practice this means that library calls will not be
|
|
|
f8560c |
+traced.
|
|
|
f8560c |
.IP "\-n, \-\-indent \fInr"
|
|
|
f8560c |
Indent trace output by \fInr\fR spaces for each level of call
|
|
|
f8560c |
nesting. Using this option makes the program flow visualization easy
|