| 1071 | |
| 1072 | #ifdef WIN32 |
| 1073 | void msCleanupOnExit( void ) |
| 1074 | { |
| 1075 | /* note that stderr and stdout seem to be non-functional in the */ |
| 1076 | /* fastcgi/win32 case. If you really want to check functioning do */ |
| 1077 | /* some sort of hack logging like below ... otherwise just trust it! */ |
| 1078 | |
| 1079 | #ifdef notdef |
| 1080 | FILE *fp_out = fopen( "D:\\temp\\mapserv.log", "w" ); |
| 1081 | |
| 1082 | fprintf( fp_out, "In msCleanupOnExit\n" ); |
| 1083 | fclose( fp_out ); |
| 1084 | #endif |
| 1085 | msCleanup(); |
| 1086 | } |
| 1087 | #endif |
| 1088 | |
| 1089 | /************************************************************************/ |
nothing calls this directly
no test coverage detected