mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-09 23:12:57 +01: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_IGN = 1 ;
|
||||||
SIG_ERR = -1 ;
|
SIG_ERR = -1 ;
|
||||||
|
|
||||||
{$ifdef CPUSPARC}
|
{$if defined(CPUSPARC) or defined(CPUSPARC64)}
|
||||||
SIGHUP = 1;
|
SIGHUP = 1;
|
||||||
SIGINT = 2;
|
SIGINT = 2;
|
||||||
SIGQUIT = 3;
|
SIGQUIT = 3;
|
||||||
@ -94,7 +94,7 @@ Const
|
|||||||
SIGPWR = SIGLOST;
|
SIGPWR = SIGLOST;
|
||||||
SIGUSR1 = 30;
|
SIGUSR1 = 30;
|
||||||
SIGUSR2 = 31;
|
SIGUSR2 = 31;
|
||||||
{$else cpusparc}
|
{$else defined(CPUSPARC) or defined(CPUSPARC64)}
|
||||||
SIGHUP = 1;
|
SIGHUP = 1;
|
||||||
SIGINT = 2;
|
SIGINT = 2;
|
||||||
SIGQUIT = 3;
|
SIGQUIT = 3;
|
||||||
@ -151,7 +151,7 @@ Const
|
|||||||
SIGPWR = 30;
|
SIGPWR = 30;
|
||||||
SIGUNUSED = 31;
|
SIGUNUSED = 31;
|
||||||
{$endif not CPUMIPS}
|
{$endif not CPUMIPS}
|
||||||
{$endif cpusparc}
|
{$endif defined(CPUSPARC) or defined(CPUSPARC64)}
|
||||||
|
|
||||||
{ si_code field values for tsiginfo.si_code when si_signo = SIGFPE }
|
{ si_code field values for tsiginfo.si_code when si_signo = SIGFPE }
|
||||||
const
|
const
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user