Define a few additional signals

darcs-hash:20060118184046-ac50b-d5a4275af398d5a8bb8a82eca90e1b189b99a4c6.gz
This commit is contained in:
axel 2006-01-19 04:40:46 +10:00
parent 619f076958
commit 3259da8f4a

View file

@ -186,30 +186,44 @@ static struct lookup_entry lookup[] =
N_( L"CPU time limit exceeded" ) N_( L"CPU time limit exceeded" )
} }
, ,
#ifdef SIGXFSZ
{ {
SIGXFSZ, SIGXFSZ,
L"SIGXFSZ", L"SIGXFSZ",
N_( L"File size limit exceeded" ) N_( L"File size limit exceeded" )
} }
, ,
#endif
{ {
SIGVTALRM, SIGVTALRM,
L"SIGVTALRM", L"SIGVTALRM",
N_( L"Virtual timer expired" ) N_( L"Virtual timer expired" )
} }
, ,
#ifdef SIGPROF
{ {
SIGPROF, SIGPROF,
L"SIGPROF", L"SIGPROF",
N_( L"Profiling timer expired" ) N_( L"Profiling timer expired" )
} }
, ,
#endif
#ifdef SIGWINCH
{ {
SIGWINCH, SIGWINCH,
L"SIGWINCH", L"SIGWINCH",
N_( L"Window size change" ) N_( L"Window size change" )
} }
, ,
#endif
#ifdef SIGWIND
{
SIGWIND,
L"SIGWIND",
N_( L"Window size change" )
}
,
#endif
{ {
SIGIO, SIGIO,
L"SIGIO", L"SIGIO",
@ -224,12 +238,54 @@ static struct lookup_entry lookup[] =
} }
, ,
#endif #endif
#ifdef SIGSYS
{ {
SIGSYS, SIGSYS,
L"SIGSYS", L"SIGSYS",
N_( L"Bad system call" ) N_( L"Bad system call" )
} }
, ,
#endif
#ifdef SIGINFO
{
SIGINFO,
L"SIGINFO",
N_( L"Information request" )
}
,
#endif
#ifdef SIGSTKFLT
{
SIGSTKFLT,
L"SISTKFLT",
N_( L"Stack fault" )
}
,
#endif
#ifdef SIGEMT
{
SIGEMT,
L"SIGEMT",
N_( L"Emulator trap" )
}
,
#endif
#ifdef SIGIOT
{
SIGIOT,
L"SIGIOT",
N_( L"Abort (Alias for SIGABRT)" )
}
,
#endif
#ifdef SIGUNUSED
{
SIGUNUSED,
L"SIGUNUSED",
N_( L"Unused signal" )
}
,
#endif
{ {
0, 0,
0, 0,