]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - cddl/usr.sbin/dtruss/dtruss.1
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / cddl / usr.sbin / dtruss / dtruss.1
1 .\"
2 .\" Copyright (c) 2010 The FreeBSD Foundation 
3 .\" All rights reserved. 
4 .\" 
5 .\" This software was developed by Rui Paulo under sponsorship from the
6 .\" FreeBSD Foundation. 
7 .\"  
8 .\" Redistribution and use in source and binary forms, with or without 
9 .\" modification, are permitted provided that the following conditions 
10 .\" are met: 
11 .\" 1. Redistributions of source code must retain the above copyright 
12 .\"    notice, this list of conditions and the following disclaimer. 
13 .\" 2. Redistributions in binary form must reproduce the above copyright 
14 .\"    notice, this list of conditions and the following disclaimer in the 
15 .\"    documentation and/or other materials provided with the distribution. 
16 .\" 
17 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 
18 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
19 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 
20 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 
21 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
22 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 
23 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 
24 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 
25 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 
26 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 
27 .\" SUCH DAMAGE. 
28 .\"
29 .\" $FreeBSD$
30 .\"
31 .Dd August 26, 2010
32 .Dt DTRUSS 1
33 .Os
34 .Sh NAME
35 .Nm dtruss 
36 .Nd Trace system calls and userland stacks using DTrace
37 .Sh SYNOPSIS
38 .Nm
39 .Op Fl acdefholLs
40 .Op Fl t Ar syscall
41 .Op Fl n Ar name Fl p Ar pid Ar command
42 .Sh DESCRIPTION
43 The
44 .Nm
45 utility traces system calls and (optionally) userland stack traces for the
46 specified programs.
47 .Pp
48 The following options are available:
49 .Bl -tag -width indent
50 .It Fl p Ar pid
51 Trace the process with PID
52 .Ar pid .
53 .It Fl n Ar name
54 Trace the process with name
55 .Ar name .
56 .It Fl t Ar syscall
57 Trace the specified syscall only.
58 .It Fl a
59 Print all details.
60 .It Fl c
61 Print syscall counts.
62 .It Fl d
63 Print relative times (in microseconds).
64 .It Fl e
65 Print elapsed times (in microseconds).
66 .It Fl f
67 Follow the children processes.
68 .It Fl l
69 Force printing PID / TID.
70 .It Fl o
71 Print time spent on CPU.
72 .It Fl s
73 Print userland stack backtraces.
74 .It Fl L
75 Don't print PID / TID.
76 .It Fl b Ar bufsize
77 Specify the DTrace buffer size.
78 .El
79 .Sh EXIT STATUS
80 .Ex -std
81 .Sh SEE ALSO
82 .Xr dtrace 1 
83 .Sh HISTORY
84 The
85 .Nm
86 utility comes from the DTraceToolkit and was first imported into
87 .Fx 9.0 .
88 .Sh AUTHORS
89 .An Brendan Gregg