鲲鹏社区首页
中文
注册
我要评分
文档获取效率
文档正确性
内容完整性
文档易理解
在线提单
论坛求助

help帮助命令

命令功能

启动程序后,查看HPC调试器调试命令的帮助信息。

命令格式

help

help命令可简写为h。

使用示例

执行以下命令,查看帮助信息:

1
help

返回信息如下:

The most commonly used debugger sub commands are:
   help                Get help information.
   breakpoint          Adds, views, and deletes breakpoints.
   rank                Displays the rank information and sets the current rank.
   group               Displays the communication subgroup information and sets the current communication subgroup.
   thread              Displays the thread information and sets the current thread.
   variable            Displays and modifies variables.
   register            Displays and modifies registers.
   stack               Displays the stack information and switches between stack frames.
   list                Displays the code context of the current pause location of the application.
   continue            Executes the application to the next breakpoint or until the application ends.
   next                Executes the current line and jumps to the next line of code (without entering the function).
   step-in             Executes the current line. If a function is called, enter this function.
   step-out            Finishes the execution in the function and returns to the calling location.
   pause               Manually suspends the running application.
   quit                Terminates the debugging session and exits the application immediately.
 See 'COMMAND -h/--help' for more information on a specific command.