| 183 | |
| 184 | |
| 185 | void clear_global_context(void) |
| 186 | { |
| 187 | if (current_processing_ctx) { |
| 188 | context_destroy(CONTEXT_GLOBAL, current_processing_ctx); |
| 189 | context_free(current_processing_ctx); |
| 190 | current_processing_ctx = NULL; |
| 191 | } |
| 192 | } |
| 193 | |
| 194 | |
| 195 | int context_register_int(enum osips_context type, context_destroy_f f) |
nothing calls this directly
no test coverage detected