rax callback routine for freeing computed parameter values
| 44 | |
| 45 | // rax callback routine for freeing computed parameter values |
| 46 | static void _ParameterFreeCallback(void *param_val) { |
| 47 | SIValue *val = (SIValue*)param_val; |
| 48 | SIValue_Free(*val); |
| 49 | rm_free(val); |
| 50 | } |
| 51 | |
| 52 | bool QueryCtx_Init(void) { |
| 53 | return (pthread_key_create(&_tlsQueryCtxKey, NULL) == 0); |
nothing calls this directly
no test coverage detected