FpDebug: Linux, removed assert. Condition can occur when process terminates, as threads have not been restarted

git-svn-id: trunk@62496 -
This commit is contained in:
martin 2020-01-04 19:44:02 +00:00
parent 834a18b043
commit 439be6f619

View File

@ -494,8 +494,8 @@ end;
function TDbgLinuxThread.CheckSignalForPostponing(AWaitedStatus: cint): Boolean;
begin
Assert(not FIsPaused, 'Got WaitStatus while already paused');
assert(FExceptionSignal = 0, 'TDbgLinuxThread.CheckSignalForPostponing: FExceptionSignal = 0');
//Assert(not FIsPaused, 'Got WaitStatus while already paused');
//assert(FExceptionSignal = 0, 'TDbgLinuxThread.CheckSignalForPostponing: FExceptionSignal = 0');
Result := FIsPaused;
DebugLn(DBG_VERBOSE and (Result), ['Warning: Thread already paused', ID]);
if Result then