* Reduced async-record shlibs debugger output

git-svn-id: trunk@12712 -
This commit is contained in:
marc 2007-11-03 02:42:40 +00:00
parent 31f9b02560
commit c6c16d5bbd

View File

@ -1652,9 +1652,19 @@ function TGDBMIDebugger.ProcessRunning(var AStoppedParams: String): Boolean;
DebugLn('[Debugger] Status output: ', Line);
end;
procedure DoNotifyAsync(const Line: String);
procedure DoNotifyAsync(var Line: String);
var
S: String;
begin
DebugLn('[Debugger] Notify output: ', Line);
S := GetPart('=', ',', Line);
case StringCase(S, ['shlibs-added', 'shlibs-updated']) of
0: begin
//TODO: track libs
end;
1:; //ignore
else
DebugLn('[Debugger] Notify output: ', Line);
end;
end;
procedure DoResultRecord(const Line: String);