Check if SIGINFO and SIGPWR are the same (HP-UX 10.2).

This commit is contained in:
mainzelm 2002-01-09 12:59:13 +00:00
parent 06ce3e41e6
commit d31eccb605
1 changed files with 3 additions and 2 deletions

View File

@ -32,8 +32,9 @@ int main(int argc, char* argv[]){
#ifdef SIGPROF
case SIGPROF : printf("scshint_prof"); break;
#endif
#ifdef SIGPWR
case SIGPWR : printf("scshint_pwr"); break;
#if defined SIGPWR && ((defined SIGINFO && SIGPWR != SIGINFO) || \
!defined SIGINFO)
case SIGPWR : printf("scshint_pwr"); break;
#endif
#ifdef SIGURG
case SIGURG : printf("scshint_urg"); break;