mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-02 09:09:47 +01:00
* added SA_RESETHAND and SA_NODEFER constants
* SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single Unix names RESETHAND and NODEFER respectively. git-svn-id: trunk@6708 -
This commit is contained in:
parent
a62c2da154
commit
a67a85332d
@ -35,8 +35,11 @@ Const
|
||||
SA_ONSTACK = $08000000;
|
||||
SA_RESTART = $10000000;
|
||||
SA_INTERRUPT = $20000000;
|
||||
SA_NOMASK = $40000000;
|
||||
SA_ONESHOT = $80000000;
|
||||
SA_NODEFER = $40000000;
|
||||
SA_RESETHAND = $80000000;
|
||||
|
||||
SA_NOMASK = SA_NODEFER;
|
||||
SA_ONESHOT = SA_RESETHAND;
|
||||
|
||||
SIG_BLOCK = 0;
|
||||
SIG_UNBLOCK = 1;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user