#97, remove unecessary wait

This commit is contained in:
Basile Burg 2016-12-01 06:07:23 +01:00
parent 46655ee919
commit d9216222ac
No known key found for this signature in database
GPG Key ID: 1868039F415CB8CF
1 changed files with 0 additions and 6 deletions

View File

@ -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;