Solaris 10 x86 でクローズド ソース プログラムをデバッグするために GDB を使用しています。
私は gdb をプログラムにアタッチして実行を続けますが、後で実行を一時停止して一部のメモリを調べたい場合はできません。CTRL-C を押すと、プログラムを一時停止して (gdb) プロンプトにドロップする代わりに、^C のみが出力されます。
bash-3.00# gdb --pid=1521
GNU gdb 6.6
Copyright (C) 2006 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB. Type "show warranty" for details.
This GDB was configured as "i386-pc-solaris2.10".
Attaching to process 1521
Retry #1:
Retry #2:
Retry #3:
Retry #4:
[New LWP 1]
0xfe3b5a23 in ?? ()
(gdb) c
Continuing.
^C^C^C^C^C^C^C^C
(gdb) プロンプトに戻るにはどうすればよいですか? 私は何か間違ったことをしていますか、どうすればこれを機能させることができますか?