When I stop gdb I automatically get info. For example, consider the following, where I continue the execution of a program and then I stop it:
(gdb) c
Continuing.
^C
Program received signal SIGINT, Interrupt.
0x08002a2a in prvCheckTasksWaitingTermination () at Middlewares/Third_Party/FreeRTOS/Source/tasks.c:3650
3650 while( uxDeletedTasksWaitingCleanUp > ( UBaseType_t ) 0U )
2: blink_led_state = 0 '00'
(gdb)
when I stop the execution, I want to suppress all the following part:
^C
Program received signal SIGINT, Interrupt.
0x08002a2a in prvCheckTasksWaitingTermination () at Middlewares/Third_Party/FreeRTOS/Source/tasks.c:3650
3650 while( uxDeletedTasksWaitingCleanUp > ( UBaseType_t ) 0U )
2: blink_led_state = 0 '00'
i.e. I wish to visualize the following:
(gdb) c
Continuing.
(gdb)
or, at most the following
(gdb) c
Continuing.
^C
(gdb)