gozer 2003/05/28 20:48:00 Modified: src/docs/1.0/guide troubleshooting.pod Log: record the segfault in Apache::Status with HP-UX 10.20 Revision Changes Path 1.20 +19 -0 modperl-docs/src/docs/1.0/guide/troubleshooting.pod Index: troubleshooting.pod =================================================================== RCS file: /home/cvs/modperl-docs/src/docs/1.0/guide/troubleshooting.pod,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- troubleshooting.pod 24 Feb 2003 22:18:46 -0000 1.19 +++ troubleshooting.pod 29 May 2003 03:48:00 -0000 1.20 @@ -691,6 +691,25 @@ can succeed on the second load. Without that flag, the second load fails. +=head1 HP-UX specific notes + +=head2 /perl/perl-status?sig dumps core under HP-UX 10.20 + +This issue is known to happen when Perl's ./Configure doesn't detect +that SIGRTMAX is defined but not implemented on that platform. + +One solution is to upgrade to a recent version of Perl that proprely +detects the implementation of that signal. + +Another solution is to modify Apache/Status.pm to skip that broken +signal by replacing the line : + + sort keys %SIG), + +with: + + sort grep { $_ ne 'RTMAX' } keys %SIG), + =head1 Problematic Perl Modules Here is the list of Perl Modules that are known to have problems under
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]