| 1251 | } |
| 1252 | |
| 1253 | static void debug_parent_run( int argc, const char * * argv ) |
| 1254 | { |
| 1255 | if ( debug_state == DEBUG_RUN ) |
| 1256 | { |
| 1257 | fprintf( command_output, "kill\n" ); |
| 1258 | fflush( command_output ); |
| 1259 | debug_parent_wait( 1 ); |
| 1260 | } |
| 1261 | debug_parent_run_print( argc, argv ); |
| 1262 | if ( debug_interface == DEBUG_INTERFACE_MI ) |
| 1263 | { |
| 1264 | printf( "=thread-created,id=\"1\",group-id=\"i1\"\n" ); |
| 1265 | debug_mi_format_token(); |
| 1266 | printf( "^running\n(gdb) \n" ); |
| 1267 | } |
| 1268 | debug_start_child( argc, argv ); |
| 1269 | debug_parent_wait( 1 ); |
| 1270 | } |
| 1271 | |
| 1272 | static int debug_parent_forward_nowait( int argc, const char * * argv, int print_message, int require_child ) |
| 1273 | { |
nothing calls this directly
no test coverage detected