thread_resources_ptr  270 TSRM/TSRM.c    static void allocate_new_resource(tsrm_tls_entry **thread_resources_ptr, THREAD_T thread_id)
thread_resources_ptr  275 TSRM/TSRM.c    	(*thread_resources_ptr) = (tsrm_tls_entry *) malloc(sizeof(tsrm_tls_entry));
thread_resources_ptr  276 TSRM/TSRM.c    	(*thread_resources_ptr)->storage = (void **) malloc(sizeof(void *)*id_count);
thread_resources_ptr  277 TSRM/TSRM.c    	(*thread_resources_ptr)->count = id_count;
thread_resources_ptr  278 TSRM/TSRM.c    	(*thread_resources_ptr)->thread_id = thread_id;
thread_resources_ptr  279 TSRM/TSRM.c    	(*thread_resources_ptr)->next = NULL;
thread_resources_ptr  282 TSRM/TSRM.c    	tsrm_tls_set(*thread_resources_ptr);
thread_resources_ptr  285 TSRM/TSRM.c    		tsrm_new_thread_begin_handler(thread_id, &((*thread_resources_ptr)->storage));
thread_resources_ptr  289 TSRM/TSRM.c    			(*thread_resources_ptr)->storage[i] = NULL;
thread_resources_ptr  292 TSRM/TSRM.c    			(*thread_resources_ptr)->storage[i] = (void *) malloc(resource_types_table[i].size);
thread_resources_ptr  294 TSRM/TSRM.c    				resource_types_table[i].ctor((*thread_resources_ptr)->storage[i], &(*thread_resources_ptr)->storage);
thread_resources_ptr  300 TSRM/TSRM.c    		tsrm_new_thread_end_handler(thread_id, &((*thread_resources_ptr)->storage));