Check if SIGINFO and SIGPWR are the same (HP-UX 10.2).
This commit is contained in:
parent
06ce3e41e6
commit
d31eccb605
|
@ -32,8 +32,9 @@ int main(int argc, char* argv[]){
|
||||||
#ifdef SIGPROF
|
#ifdef SIGPROF
|
||||||
case SIGPROF : printf("scshint_prof"); break;
|
case SIGPROF : printf("scshint_prof"); break;
|
||||||
#endif
|
#endif
|
||||||
#ifdef SIGPWR
|
#if defined SIGPWR && ((defined SIGINFO && SIGPWR != SIGINFO) || \
|
||||||
case SIGPWR : printf("scshint_pwr"); break;
|
!defined SIGINFO)
|
||||||
|
case SIGPWR : printf("scshint_pwr"); break;
|
||||||
#endif
|
#endif
|
||||||
#ifdef SIGURG
|
#ifdef SIGURG
|
||||||
case SIGURG : printf("scshint_urg"); break;
|
case SIGURG : printf("scshint_urg"); break;
|
||||||
|
|
Loading…
Reference in New Issue