mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-15 05:39:17 +02:00
Debugger: do not report "thread-group-added" as initialization output
git-svn-id: trunk@28156 -
This commit is contained in:
parent
76a77afa7c
commit
04e116067a
@ -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 <> ''
|
||||
|
Loading…
Reference in New Issue
Block a user