blob: f99c3f764d0ee02e625516a1046b5ed3b4d1b449 [file] [log] [blame]
mfangf2cf0062015-07-15 12:12:46 -07001'\" t
2.\" Copyright (c) 2004, 2013, Oracle and/or its affiliates. All rights reserved.
3.\" DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4.\"
5.\" This code is free software; you can redistribute it and/or modify it
6.\" under the terms of the GNU General Public License version 2 only, as
7.\" published by the Free Software Foundation.
8.\"
9.\" This code is distributed in the hope that it will be useful, but WITHOUT
10.\" ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11.\" FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12.\" version 2 for more details (a copy is included in the LICENSE file that
13.\" accompanied this code).
14.\"
15.\" You should have received a copy of the GNU General Public License version
16.\" 2 along with this work; if not, write to the Free Software Foundation,
17.\" Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18.\"
19.\" Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20.\" or visit www.oracle.com if you need additional information or have any
21.\" questions.
22.\"
23.\" Arch: generic
24.\" Software: JDK 8
25.\" Date: 21 November 2013
26.\" SectDesc: Troubleshooting Tools
27.\" Title: jstack.1
28.\"
29.if n .pl 99999
30.TH jstack 1 "21 November 2013" "JDK 8" "Troubleshooting Tools"
31.\" -----------------------------------------------------------------
32.\" * Define some portability stuff
33.\" -----------------------------------------------------------------
34.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
35.\" http://bugs.debian.org/507673
36.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
37.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
38.ie \n(.g .ds Aq \(aq
39.el .ds Aq '
40.\" -----------------------------------------------------------------
41.\" * set default formatting
42.\" -----------------------------------------------------------------
43.\" disable hyphenation
44.nh
45.\" disable justification (adjust text to left margin only)
46.ad l
47.\" -----------------------------------------------------------------
48.\" * MAIN CONTENT STARTS HERE *
49.\" -----------------------------------------------------------------
50
51.SH NAME
52jstack \- Prints Java thread stack traces for a Java process, core file, or remote debug server\&. This command is experimental and unsupported\&.
53.SH SYNOPSIS
54.sp
55.nf
56
57\fBjstack\fR [ \fIoptions\fR ] \fIpid\fR
58.fi
59.nf
60
61\fBjstack\fR [ \fIoptions\fR ] \fIexecutable\fR \fIcore\fR
62.fi
63.nf
64
65\fBjstack\fR [ \fIoptions\fR ] [ \fIserver\-id\fR@ ] \fIremote\-hostname\-or\-IP\fR
66.fi
67.sp
68.TP
69\fIoptions\fR
70The command-line options\&. See Options\&.
71.TP
72\fIpid\fR
73The process ID for which the stack trace is printed\&. The process must be a Java process\&. To get a list of Java processes running on a machine, use the jps(1) command\&.
74.TP
75\fIexecutable\fR
76The Java executable from which the core dump was produced\&.
77.TP
78\fIcore\fR
79The core file for which the stack trace is to be printed\&.
80.TP
81\fIremote-hostname-or-IP\fR
82The remote debug server \f3hostname\fR or \f3IP\fR address\&. See jsadebugd(1)\&.
83.TP
84\fIserver-id\fR
85An optional unique ID to use when multiple debug servers are running on the same remote host\&.
86.SH DESCRIPTION
87The \f3jstack\fR command prints Java stack traces of Java threads for a specified Java process, core file, or remote debug server\&. For each Java frame, the full class name, method name, byte code index (BCI), and line number, when available, are printed\&. With the \f3-m\fR option, the \f3jstack\fR command prints both Java and native frames of all threads with the program counter (PC)\&. For each native frame, the closest native symbol to PC, when available, is printed\&. C++ mangled names are not demangled\&. To demangle C++ names, the output of this command can be piped to \f3c++filt\fR\&. When the specified process is running on a 64-bit Java Virtual Machine, you might need to specify the \f3-J-d64\fR option, for example: \f3jstack -J-d64 -m pid\fR\&.
88.PP
89\fINote:\fR This utility is unsupported and might not be available in future release of the JDK\&. In Windows Systems where the dbgeng\&.dll file is not present, Debugging Tools For Windows must be installed so these tools work\&. The \f3PATH\fR environment variable needs to contain the location of the jvm\&.dll that is used by the target process, or the location from which the crash dump file was produced\&. For example:
90.sp
91.nf
92\f3set PATH=<jdk>\ejre\ebin\eclient;%PATH%\fP
93.fi
94.nf
95\f3\fP
96.fi
97.sp
98.SH OPTIONS
99.TP
100-F
101.br
102Force a stack dump when \f3jstack\fR [\f3-l\fR] \f3pid\fR does not respond\&.
103.TP
104-l
105.br
106Long listing\&. Prints additional information about locks such as a list of owned \f3java\&.util\&.concurrent\fR ownable synchronizers\&. See the \f3AbstractOwnableSynchronizer\fR class description at http://docs\&.oracle\&.com/javase/8/docs/api/java/util/concurrent/locks/AbstractOwnableSynchronizer\&.html
107.TP
108-m
109.br
110Prints a mixed mode stack trace that has both Java and native C/C++ frames\&.
111.TP
112-h
113.br
114Prints a help message\&.
115.TP
116-help
117.br
118Prints a help message\&.
119.SH KNOWN\ BUGS
120In mixed mode stack trace, the \f3-m\fR option does not work with the remote debug server\&.
121.SH SEE\ ALSO
122.TP 0.2i
123\(bu
124pstack(1)
125.TP 0.2i
126\(bu
127C++filt(1)
128.TP 0.2i
129\(bu
130jps(1)
131.TP 0.2i
132\(bu
133jsadebugd(1)
134.RE
135.br
136'pl 8.5i
137'bp