From d9216222ac3ba71db07a97d721fabc8d56c917da Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Thu, 1 Dec 2016 06:07:23 +0100 Subject: [PATCH] #97, remove unecessary wait --- src/ce_gdb.pas | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/ce_gdb.pas b/src/ce_gdb.pas index 27b92ea5..1f94b136 100644 --- a/src/ce_gdb.pas +++ b/src/ce_gdb.pas @@ -1314,13 +1314,10 @@ begin fSilentPause := false; end; gdbCommand('break ' + fname + ':' + intToStr(line)); - if r then - waitCommandProcessed; if r then begin fSilentPause := true; gdbCommand('-exec-continue --all', @gdboutJsonize); - waitCommandProcessed; fSilentPause := false; end; end; @@ -1343,13 +1340,10 @@ begin fSilentPause := false; end; gdbCommand('clear ' + fname + ':' + intToStr(line)); - if r then - waitCommandProcessed; if r then begin fSilentPause := true; gdbCommand('-exec-continue --all', @gdboutJsonize); - waitCommandProcessed; fSilentPause := false; end; end;