0
実行中のプログラムを停止したり終了したりせずにgdb接続を終了する方法はありますか? gdb接続が閉じられた後も実行プログラムが続行されている必要があります。実行中のプログラムを停止せずにgdb接続を終了する方法
実行中のプログラムを停止したり終了したりせずにgdb接続を終了する方法はありますか? gdb接続が閉じられた後も実行プログラムが続行されている必要があります。実行中のプログラムを停止せずにgdb接続を終了する方法
実行中のプログラムを停止または終了せずにgdb接続を終了する方法はありますか?
(gdb) help detach
Detach a process or file previously attached.
If a process, it is no longer traced, and it continues its execution. If
you were debugging a file, the file is closed and gdb no longer accesses it.
List of detach subcommands:
detach checkpoint -- Detach from a checkpoint (experimental)
detach inferiors -- Detach from inferior ID (or list of IDS)
Type "help detach" followed by detach subcommand name for full documentation.
Type "apropos word" to search for commands related to "word".
Command name abbreviations are allowed if unambiguous.
おかげで、しばらく私は、detachコマンドを気づきました。 – RedArrow