現在のプロセスを終了します。
このコマンドは、現在のプロセスを終了し、デバッガーの実行はそのままにします。以前設定されたブレークポイントは、そのまま維持されます。後でデバッグ対象をリロードしなくても、run コマンド (GDB モード) または rerun コマンド (IDB モード) を使用して、プログラムを再度実行できます。
GDB モード:
(idb) info program Using the running image of child process 17629. Program stopped at 0x8051603. It stopped at breakpoint 1. (idb) kill Program exited normally. (idb) run Starting program: /home/user/examples/x_list Breakpoint 1, main () at src/x_list.cxx:182 182 List<Node> nodeList;
IDB モード:
(idb) show process Current Process: localhost:17336 (/home/user/examples/x_list) paused. (idb) kill Process has exited (idb) rerun [1] stopped at [int main(void):182 0x08051603] 182 List<Node> nodeList;