retrieve QueryCtx, return NULL if one does not exist
| 38 | |
| 39 | // retrieve QueryCtx, return NULL if one does not exist |
| 40 | static inline QueryCtx *_QueryCtx_GetCtx(void) { |
| 41 | QueryCtx *ctx = pthread_getspecific(_tlsQueryCtxKey); |
| 42 | return ctx; |
| 43 | } |
| 44 | |
| 45 | // rax callback routine for freeing computed parameter values |
| 46 | static void _ParameterFreeCallback(void *param_val) { |
no outgoing calls
no test coverage detected