zoukankan      html  css  js  c++  java
  • java查看工具jstack-windows

    Prints Java thread stack traces for a Java process, core file, or remote debug server. This command is experimental and unsupported.

    Synopsis

    jstack [ options ] pid

    jstack [ options ] executable core

    jstack [ options ] [ server-id@ ] remote-hostname-or-IP

    options

    The command-line options. See Options.

    pid

    The 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.

    executable

    The Java executable from which the core dump was produced.

    core

    The core file for which the stack trace is to be printed.

    remote-hostname-or-IP

    The remote debug server hostname or IP address. See jsadebugd(1).

    server-id

    An optional unique ID to use when multiple debug servers are running on the same remote host.

    Description

    The jstack 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-m option, the jstack 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 c++filt. When the specified process is running on a 64-bit Java Virtual Machine, you might need to specify the -J-d64 option, for example: jstack -J-d64 -m pid.

    Note: 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 PATH 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:

    set PATH=<jdk>jreinclient;%PATH%
    

    Options

    -F

    Force a stack dump when jstack [-lpid does not respond.

    -l

    Long listing. Prints additional information about locks such as a list of owned java.util.concurrent ownable synchronizers. See the AbstractOwnableSynchronizer class description at
    http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/locks/AbstractOwnableSynchronizer.html

    -m

    Prints a mixed mode stack trace that has both Java and native C/C++ frames.

    -h

    Prints a help message.

    -help

    Prints a help message.

    Known Bugs

    In mixed mode stack trace, the -m option does not work with the remote debug server.

  • 相关阅读:
    [CSP校内集训]2019.10.16数学专题
    Knights of the Round Table(缩点+判奇环) poj 2942 && 洛谷SP2878
    机房测试7:exam(二进制+模拟)
    机房测试9:gift(单调队列优化dp)
    机房测试9:hotel(神奇dp)
    机房测试8:question(求最大1矩阵:悬线法 or 二分)
    机房测试7:paint(分治+st表)
    机房测试6:矿石(优先队列)
    机房测试6:括号序列(hash+栈 )
    bzoj1123 && 洛谷 P3469 tarjan割点的运用
  • 原文地址:https://www.cnblogs.com/hushaojun/p/4951566.html
Copyright © 2011-2022 走看看