diff options
author | mdodd <mdodd@FreeBSD.org> | 2002-08-04 01:27:31 +0000 |
---|---|---|
committer | mdodd <mdodd@FreeBSD.org> | 2002-08-04 01:27:31 +0000 |
commit | 3cb287247d5c599cde0f7839b27320c6ae3b907c (patch) | |
tree | 1ea381bca59453aef6677708cd85d541a2dc4c3e /usr.bin/truss/truss.1 | |
parent | e327abdb5fe6f6022bec2eac7491975d34fa77d2 (diff) | |
download | FreeBSD-src-3cb287247d5c599cde0f7839b27320c6ae3b907c.zip FreeBSD-src-3cb287247d5c599cde0f7839b27320c6ae3b907c.tar.gz |
Add options to print absolute and relative timestamps.
PR: bin/25587 (in part)
MFC after: 3 weeks
Diffstat (limited to 'usr.bin/truss/truss.1')
-rw-r--r-- | usr.bin/truss/truss.1 | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/usr.bin/truss/truss.1 b/usr.bin/truss/truss.1 index 58f9ac5..d4cbb6a 100644 --- a/usr.bin/truss/truss.1 +++ b/usr.bin/truss/truss.1 @@ -8,11 +8,11 @@ .Nd trace system calls .Sh SYNOPSIS .Nm -.Op Fl fS +.Op Fl fdDS .Op Fl o Ar file .Fl p Ar pid .Nm -.Op Fl fS +.Op Fl fdDS .Op Fl o Ar file command .Op args @@ -29,6 +29,12 @@ The options are as follows: .It Fl f Trace decendants of the original traced process created by fork(), vfork, etc. +.It Fl d +Include timestamps in the output showing the time elapsed +since the trace was started. +.It Fl D +Include timestamps in the output showing the time elapsed +since the last recorded event. .It Fl S Do not display information about signals received by the process. (Normally, |