thread_resources_ptr 274 TSRM/TSRM.c static void allocate_new_resource(tsrm_tls_entry **thread_resources_ptr, THREAD_T thread_id) thread_resources_ptr 279 TSRM/TSRM.c (*thread_resources_ptr) = (tsrm_tls_entry *) malloc(sizeof(tsrm_tls_entry)); thread_resources_ptr 280 TSRM/TSRM.c (*thread_resources_ptr)->storage = NULL; thread_resources_ptr 282 TSRM/TSRM.c (*thread_resources_ptr)->storage = (void **) malloc(sizeof(void *)*id_count); thread_resources_ptr 284 TSRM/TSRM.c (*thread_resources_ptr)->count = id_count; thread_resources_ptr 285 TSRM/TSRM.c (*thread_resources_ptr)->thread_id = thread_id; thread_resources_ptr 286 TSRM/TSRM.c (*thread_resources_ptr)->next = NULL; thread_resources_ptr 289 TSRM/TSRM.c tsrm_tls_set(*thread_resources_ptr); thread_resources_ptr 296 TSRM/TSRM.c (*thread_resources_ptr)->storage[i] = NULL; thread_resources_ptr 299 TSRM/TSRM.c (*thread_resources_ptr)->storage[i] = (void *) malloc(resource_types_table[i].size); thread_resources_ptr 301 TSRM/TSRM.c resource_types_table[i].ctor((*thread_resources_ptr)->storage[i]);