| 1316 | } |
| 1317 | |
| 1318 | static void debug_parent_kill( int argc, const char * * argv ) |
| 1319 | { |
| 1320 | if ( argc > 1 ) |
| 1321 | { |
| 1322 | debug_error( "Too many arguments to kill." ); |
| 1323 | return; |
| 1324 | } |
| 1325 | if ( debug_interface == DEBUG_INTERFACE_MI ) |
| 1326 | { |
| 1327 | debug_mi_format_token(); |
| 1328 | printf( "^done\n(gdb) \n" ); |
| 1329 | fflush( stdout ); |
| 1330 | } |
| 1331 | debug_parent_forward( 1, argv, 0, 1 ); |
| 1332 | } |
| 1333 | |
| 1334 | static void debug_parent_step( int argc, const char * * argv ) |
| 1335 | { |
nothing calls this directly
no test coverage detected