From b36a317c30acee30694a5068bae1abcd622bfec0 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Thu, 10 Jul 2025 02:18:36 +0200 Subject: fix: `LibCompiler::install_signal(SIGINT, dbgi_ctrlc_handler);` to add Ctrl-C support again. Signed-off-by: Amlal El Mahrouss --- dev/LibDebugger/src/POSIXMachContractCLI.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dev/LibDebugger') diff --git a/dev/LibDebugger/src/POSIXMachContractCLI.cc b/dev/LibDebugger/src/POSIXMachContractCLI.cc index a45b52d..0962ba6 100644 --- a/dev/LibDebugger/src/POSIXMachContractCLI.cc +++ b/dev/LibDebugger/src/POSIXMachContractCLI.cc @@ -41,7 +41,7 @@ LIBCOMPILER_MODULE(DebuggerMachPOSIX) { kStdOut << "[+] Image set to: " << kPath << "\n"; } - LibCompiler::(SIGINT, dbgi_ctrlc_handler); + LibCompiler::install_signal(SIGINT, dbgi_ctrlc_handler); while (YES) { if (kKeepRunning) { -- cgit v1.2.3