Debugger: do not report "thread-group-added" as initialization output

git-svn-id: trunk@28156 -
This commit is contained in:
martin 2010-11-08 16:18:37 +00:00
parent 76a77afa7c
commit 04e116067a

View File

@ -3066,7 +3066,19 @@ begin
Line := ReadLine;
while DebugProcessRunning and (Line <> '(gdb) ') do
begin
S := S + Line + LineEnding;
case Line[1] of
'=': begin
case StringCase(GetPart(['='], [','], Line, False, False),
['thread-group-added'])
of
0: {ignore};
else
S := S + Line + LineEnding;
end;
end;
else
S := S + Line + LineEnding;
end;
Line := ReadLine;
end;
if S <> ''