mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-12-16 01:50:38 +01:00
Share SPARC signal constants with SPARC64 cpu
git-svn-id: trunk@36652 -
This commit is contained in:
parent
ece9547ea7
commit
56039f2fc6
@ -20,14 +20,14 @@
|
||||
|
||||
Const
|
||||
{ For sending a signal }
|
||||
{$ifdef CPUSPARC}
|
||||
{$if defined(CPUSPARC) or defined(CPUSPARC64)}
|
||||
SA_SIGINFO = $200;
|
||||
SA_NOMASK = $20;
|
||||
|
||||
SIG_BLOCK = 1;
|
||||
SIG_UNBLOCK = 2;
|
||||
SIG_SETMASK = 4;
|
||||
{$else CPUSPARC}
|
||||
{$else : not (CPUSPARC or CPUSPARC64)}
|
||||
{$ifdef CPUMIPS}
|
||||
SA_NOCLDSTOP = 1;
|
||||
SA_NOCLDWAIT = $10000;
|
||||
@ -53,7 +53,7 @@ Const
|
||||
SA_NOMASK = SA_NODEFER;
|
||||
SA_ONESHOT = SA_RESETHAND;
|
||||
|
||||
{$endif CPUSPARC}
|
||||
{$endif not (CPUSPARC or CPUSPARC64) }
|
||||
|
||||
SIG_DFL = 0 ;
|
||||
SIG_IGN = 1 ;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user