From 4af9e13120c6495cf0533e0736cc7a8ab5b41390 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 1 Nov 2024 18:40:21 +0300 Subject: [PATCH] =?UTF-8?q?chore:=20=D1=83=D0=BB=D1=83=D1=87=D1=88=D0=B8?= =?UTF-8?q?=D0=BB=20=D0=B2=D1=8B=D0=B2=D0=BE=D0=B4=20=D0=BD=D0=B5=D0=BC?= =?UTF-8?q?=D0=BD=D0=BE=D0=B3=D0=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 08-debugging/test.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; }