| 68 | /************************************************************************/ |
| 69 | |
| 70 | void msIO_Cleanup() |
| 71 | |
| 72 | { |
| 73 | if( is_msIO_initialized ) |
| 74 | |
| 75 | { |
| 76 | is_msIO_initialized = MS_FALSE; |
| 77 | while( io_context_list != NULL ) |
| 78 | { |
| 79 | msIOContextGroup *last = io_context_list; |
| 80 | io_context_list = io_context_list->next; |
| 81 | free( last ); |
| 82 | } |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | /************************************************************************/ |
| 87 | /* msIO_GetContextGroup() */ |