zoukankan      html  css  js  c++  java
  • gdb

    aliases -- Aliases of other commands
    breakpoints -- Making program stop at certain points
    data -- Examining data
    files -- Specifying and examining files
    internals -- Maintenance commands
    obscure -- Obscure features
    running -- Running the program
    stack -- Examining the stack
    status -- Status inquiries
    support -- Support facilities
    tracepoints -- Tracing of program execution without stopping the program
    user-defined -- User-defined commands

    running

    advance -- Continue the program up to the given location (same form as args for break command)
    attach -- Attach to a process or file outside of GDB
    continue -- Continue program being debugged
    detach -- Detach a process or file previously attached
    detach checkpoint -- Detach from a checkpoint (experimental)
    detach inferiors -- Detach from inferior ID (or list of IDS)
    disconnect -- Disconnect from a target
    finish -- Execute until selected stack frame returns
    handle -- Specify how to handle signals
    inferior -- Use this command to switch between inferiors
    interrupt -- Interrupt the execution of the debugged program
    jump -- Continue program being debugged at specified line or address
    kill -- Kill execution of program being debugged
    kill inferiors -- Kill inferior ID (or list of IDs)
    next -- Step program
    nexti -- Step one instruction
    reverse-continue -- Continue program being debugged but run it in reverse
    reverse-finish -- Execute backward until just before selected stack frame is called
    reverse-next -- Step program backward
    reverse-nexti -- Step backward one instruction
    reverse-step -- Step program backward until it reaches the beginning of another source line
    reverse-stepi -- Step backward exactly one instruction
    run -- Start debugged program
    signal -- Continue program with the specified signal
    start -- Run the debugged program until the beginning of the main procedure
    step -- Step program until it reaches a different source line
    stepi -- Step one instruction exactly
    target -- Connect to a target machine or process
    target child -- Unix child process (started by the "run" command)
    target core -- Use a core file as a target
    target exec -- Use an executable file as a target
    target extended-remote -- Use a remote computer via a serial line
    target record -- Log program while executing and replay execution from log
    target record-btrace -- Collect control-flow trace and provide the execution history
    target record-core -- Log program while executing and replay execution from log

    target record-full -- Log program while executing and replay execution from log
    target remote -- Use a remote computer via a serial line
    target tfile -- Use a trace file as a target
    task -- Use this command to switch between Ada tasks
    thread -- Use this command to switch between threads
    thread apply -- Apply a command to a list of threads
    thread apply all -- Apply a command to all threads
    thread find -- Find threads that match a regular expression
    thread name -- Set the current thread's name
    until -- Execute until the program reaches a source line greater than the current

  • 相关阅读:
    收集Linux常用命令
    loadrunner没有告诉你的
    loadrunner没有告诉你的
    loadrunner没有告诉你的
    QA、EPG、PMO各自的职能划分及关系是什么?
    QA、EPG、PMO各自的职能划分及关系是什么?
    QA、EPG、PMO各自的职能划分及关系是什么?
    loadrunner通过odbc测mysql数据库语句
    loadrunner通过odbc测mysql数据库语句
    loadrunner通过odbc测mysql数据库语句
  • 原文地址:https://www.cnblogs.com/anjsxz/p/3720746.html
Copyright © 2011-2022 走看看