Changeset 738 for trunk/server/thread.c
- Timestamp:
- 03/03/08 05:08:26 (21 months ago)
- Files:
-
- 1 modified
-
trunk/server/thread.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/server/thread.c
r653 r738 572 572 /******************************* SLAB ALLOCATOR ******************************/ 573 573 574 void *mt_slabs_alloc(size_t size ) {574 void *mt_slabs_alloc(size_t size, unsigned int id) { 575 575 void *ret; 576 576 577 577 pthread_mutex_lock(&slabs_lock); 578 ret = do_slabs_alloc(size );578 ret = do_slabs_alloc(size, id); 579 579 pthread_mutex_unlock(&slabs_lock); 580 580 return ret;
