aboutsummaryrefslogtreecommitdiff
path: root/options.h
diff options
context:
space:
mode:
authorJuan Cespedes <cespedes@debian.org>2009-04-07 15:45:53 +0200
committerJuan Cespedes <cespedes@debian.org>2009-04-07 15:45:53 +0200
commitcc813cd481c74ee4861baa5dd6154c3f234c7901 (patch)
tree10ac03e664e3f80918f3ec7eca8ce175ac3eda03 /options.h
parentda9b953284966b8c52de43713ebb5b503756e468 (diff)
downloadltrace-cc813cd481c74ee4861baa5dd6154c3f234c7901.tar.gz
More fields to struct "options", same output with or without -o
(opt_s, opt_f)
Diffstat (limited to 'options.h')
-rw-r--r--options.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/options.h b/options.h
index 8fc3ade..c6b3672 100644
--- a/options.h
+++ b/options.h
@@ -16,12 +16,12 @@ struct options_t {
int summary; /* count time, calls, and report a summary on program exit */
int debug; /* debug */
int arraylen; /* default maximum # of array elements printed */
+ int strlen; /* default maximum # of bytes printed in strings */
+ int follow; /* trace child processes */
};
extern struct options_t options;
extern int opt_i; /* instruction pointer */
-extern int opt_s; /* default maximum # of bytes printed in strings */
-extern int opt_f; /* trace child processes */
extern int opt_r; /* print relative timestamp */
extern int opt_t; /* print absolute timestamp */
extern int opt_T; /* show the time spent inside each call */