diff --git a/08-debugging/test.c b/08-debugging/test.c index 65de575..67dd39e 100644 --- a/08-debugging/test.c +++ b/08-debugging/test.c @@ -52,6 +52,7 @@ int main() continue_execution(pid); if (stats & SIGTRAP) { + printf("--BREAKPOINT--\n"); while (stats != 0) { read(0, &buff, 1); @@ -60,7 +61,7 @@ int main() } } - printf("____AFTER_TRACE_PARRENT____\n"); + printf("____PROCESS_WAS_TERMINATED____\n"); } return 0; }