Remove useless signal table defines

This commit is contained in:
Panu Matilainen 2016-12-13 12:01:54 +02:00
parent 8cc3342cff
commit ecc9c61e4b
1 changed files with 0 additions and 5 deletions

View File

@ -28,15 +28,10 @@ static struct rpmsig_s {
struct sigaction oact;
} rpmsigTbl[] = {
{ SIGINT, rpmsqAction },
#define rpmsigTbl_sigint (&rpmsigTbl[0])
{ SIGQUIT, rpmsqAction },
#define rpmsigTbl_sigquit (&rpmsigTbl[1])
{ SIGHUP, rpmsqAction },
#define rpmsigTbl_sighup (&rpmsigTbl[3])
{ SIGTERM, rpmsqAction },
#define rpmsigTbl_sigterm (&rpmsigTbl[4])
{ SIGPIPE, rpmsqAction },
#define rpmsigTbl_sigpipe (&rpmsigTbl[5])
{ -1, NULL },
};