From 27bf4a78b7203ed77790c92134213c3398214daa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Smr=C5=BE?= Date: Sat, 30 Aug 2025 22:09:14 +0200 Subject: Add "ignore" command Changelog: Added `ignore` builtin command --- src/GDB.hs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/GDB.hs') diff --git a/src/GDB.hs b/src/GDB.hs index 0819600..8d50d7f 100644 --- a/src/GDB.hs +++ b/src/GDB.hs @@ -72,12 +72,14 @@ gdbStart onCrash = do { std_in = CreatePipe, std_out = CreatePipe, std_err = CreatePipe } pout <- liftIO $ newTVarIO [] + ignore <- liftIO $ newTVarIO ( 0, [] ) let process = Process { procName = ProcNameGDB , procHandle = Left handle , procStdin = hin , procOutput = pout + , procIgnore = ignore , procKillWith = Nothing , procNode = undefined } -- cgit v1.2.3