* 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:
ivost 2007-03-03 22:21:07 +00:00
parent a62c2da154
commit a67a85332d

View File

@ -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;