| 212 | } |
| 213 | |
| 214 | int context_register_ptr(enum osips_context type, context_destroy_f f) |
| 215 | { |
| 216 | context_sizes[type] += sizeof(void *); |
| 217 | register_context_destroy(f, type, CONTEXT_PTR_TYPE); |
| 218 | |
| 219 | return type_sizes[type][CONTEXT_PTR_TYPE]++; |
| 220 | } |
no test coverage detected