| 1058 | /************************************************************************/ |
| 1059 | #ifndef WIN32 |
| 1060 | void msCleanupOnSignal( int nInData ) |
| 1061 | { |
| 1062 | /* For some reason, the fastcgi message code does not seem to work */ |
| 1063 | /* from within the signal handler on Unix. So we force output through */ |
| 1064 | /* normal stdio functions. */ |
| 1065 | msIO_installHandlers( NULL, NULL, NULL ); |
| 1066 | msIO_fprintf( stderr, "In msCleanupOnSignal.\n" ); |
| 1067 | msCleanup(); |
| 1068 | exit( 0 ); |
| 1069 | } |
| 1070 | #endif |
| 1071 | |
| 1072 | #ifdef WIN32 |
nothing calls this directly
no test coverage detected