mirror of
https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git
synced 2024-12-20 07:20:48 +08:00
e2fsck: make the signal catcher more portable, take 2
One table got missed when adding #ifdef's so that e2fsck/sigcatcher.c would compile on non-Linux systems. Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
This commit is contained in:
parent
f6b16547f4
commit
1c5ffb6820
@ -132,15 +132,33 @@ static struct str_table sig_table[] = {
|
||||
};
|
||||
|
||||
static struct str_table generic_code_table[] = {
|
||||
#ifdef SI_ASYNCNL
|
||||
DEFINE_ENTRY(SI_ASYNCNL)
|
||||
#endif
|
||||
#ifdef SI_TKILL
|
||||
DEFINE_ENTRY(SI_TKILL)
|
||||
#endif
|
||||
#ifdef SI_SIGIO
|
||||
DEFINE_ENTRY(SI_SIGIO)
|
||||
#endif
|
||||
#ifdef SI_ASYNCIO
|
||||
DEFINE_ENTRY(SI_ASYNCIO)
|
||||
#endif
|
||||
#ifdef SI_MESGQ
|
||||
DEFINE_ENTRY(SI_MESGQ)
|
||||
#endif
|
||||
#ifdef SI_TIMER
|
||||
DEFINE_ENTRY(SI_TIMER)
|
||||
#endif
|
||||
#ifdef SI_QUEUE
|
||||
DEFINE_ENTRY(SI_QUEUE)
|
||||
#endif
|
||||
#ifdef SI_USER
|
||||
DEFINE_ENTRY(SI_USER)
|
||||
#endif
|
||||
#ifdef SI_KERNEL
|
||||
DEFINE_ENTRY(SI_KERNEL)
|
||||
#endif
|
||||
END_TABLE
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user