Good Day All!
I've found a partial solution to this problem, it works well for me. Not really found a method to send ctrl-C to the debugger process, but I did following change in DebuggerGDB::LaunchProcess:
//m_Pid = wxExecute(cmd, wxEXEC_ASYNC, m_pProcess);
m_Pid = wxExecute(cmd, wxEXEC_ASYNC | wxEXEC_NOHIDE, m_pProcess);
Now a console window appears when the debugger is started. If I hit the ctrl-C inside, the debugger breaks as expected....
Additionally, I changed behavior of start command to gdb, so that in case off remote debugging always continue and never run ist omitted.
If somebody is interested, I can post affected files etc. or a complete binary (trunk from 2008-09-12).
Gottfried