mirror of https://gitlab.com/basile.b/dexed.git
#97, remove unecessary wait
This commit is contained in:
parent
46655ee919
commit
d9216222ac
|
@ -1314,13 +1314,10 @@ begin
|
||||||
fSilentPause := false;
|
fSilentPause := false;
|
||||||
end;
|
end;
|
||||||
gdbCommand('break ' + fname + ':' + intToStr(line));
|
gdbCommand('break ' + fname + ':' + intToStr(line));
|
||||||
if r then
|
|
||||||
waitCommandProcessed;
|
|
||||||
if r then
|
if r then
|
||||||
begin
|
begin
|
||||||
fSilentPause := true;
|
fSilentPause := true;
|
||||||
gdbCommand('-exec-continue --all', @gdboutJsonize);
|
gdbCommand('-exec-continue --all', @gdboutJsonize);
|
||||||
waitCommandProcessed;
|
|
||||||
fSilentPause := false;
|
fSilentPause := false;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
@ -1343,13 +1340,10 @@ begin
|
||||||
fSilentPause := false;
|
fSilentPause := false;
|
||||||
end;
|
end;
|
||||||
gdbCommand('clear ' + fname + ':' + intToStr(line));
|
gdbCommand('clear ' + fname + ':' + intToStr(line));
|
||||||
if r then
|
|
||||||
waitCommandProcessed;
|
|
||||||
if r then
|
if r then
|
||||||
begin
|
begin
|
||||||
fSilentPause := true;
|
fSilentPause := true;
|
||||||
gdbCommand('-exec-continue --all', @gdboutJsonize);
|
gdbCommand('-exec-continue --all', @gdboutJsonize);
|
||||||
waitCommandProcessed;
|
|
||||||
fSilentPause := false;
|
fSilentPause := false;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
Loading…
Reference in New Issue