mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-11-09 17:55:01 +01:00
FpDebugger (pure): Ignore SIGCHLD signal and let the debuggee handle it (Linux)
git-svn-id: trunk@45884 -
This commit is contained in:
parent
9af8b618ac
commit
22ff8ae3ff
@ -803,6 +803,11 @@ begin
|
|||||||
FExceptionSignal:=SIGSEGV;
|
FExceptionSignal:=SIGSEGV;
|
||||||
result := deException;
|
result := deException;
|
||||||
end;
|
end;
|
||||||
|
SIGCHLD:
|
||||||
|
begin
|
||||||
|
FExceptionSignal:=SIGCHLD;
|
||||||
|
result := deInternalContinue;
|
||||||
|
end;
|
||||||
SIGKILL:
|
SIGKILL:
|
||||||
begin
|
begin
|
||||||
if FIsTerminating then
|
if FIsTerminating then
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user