mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 03:47:59 +02:00
* sparc64 uses the same different signal numbers as sparc32 on linux
git-svn-id: trunk@36764 -
This commit is contained in:
parent
7ed3757f8c
commit
3b48c6e316
@ -59,7 +59,7 @@ Const
|
||||
SIG_IGN = 1 ;
|
||||
SIG_ERR = -1 ;
|
||||
|
||||
{$ifdef CPUSPARC}
|
||||
{$if defined(CPUSPARC) or defined(CPUSPARC64)}
|
||||
SIGHUP = 1;
|
||||
SIGINT = 2;
|
||||
SIGQUIT = 3;
|
||||
@ -94,7 +94,7 @@ Const
|
||||
SIGPWR = SIGLOST;
|
||||
SIGUSR1 = 30;
|
||||
SIGUSR2 = 31;
|
||||
{$else cpusparc}
|
||||
{$else defined(CPUSPARC) or defined(CPUSPARC64)}
|
||||
SIGHUP = 1;
|
||||
SIGINT = 2;
|
||||
SIGQUIT = 3;
|
||||
@ -151,7 +151,7 @@ Const
|
||||
SIGPWR = 30;
|
||||
SIGUNUSED = 31;
|
||||
{$endif not CPUMIPS}
|
||||
{$endif cpusparc}
|
||||
{$endif defined(CPUSPARC) or defined(CPUSPARC64)}
|
||||
|
||||
{ si_code field values for tsiginfo.si_code when si_signo = SIGFPE }
|
||||
const
|
||||
|
Loading…
Reference in New Issue
Block a user