mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-13 08:27:26 +00:00
Define a few additional signals
darcs-hash:20060118184046-ac50b-d5a4275af398d5a8bb8a82eca90e1b189b99a4c6.gz
This commit is contained in:
parent
619f076958
commit
3259da8f4a
1 changed files with 56 additions and 0 deletions
56
signal.c
56
signal.c
|
@ -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,
|
||||||
|
|
Loading…
Reference in a new issue