| 183 | /* MemPool */ |
| 184 | |
| 185 | static ACL_MEM_POOL *memPoolCreate(void) |
| 186 | { |
| 187 | ACL_MEM_POOL *pool = acl_default_calloc(__FILE__, __LINE__, |
| 188 | 1, sizeof(MemPool)); |
| 189 | MemPool *squid_pool = (MemPool *) pool; |
| 190 | |
| 191 | memset(&squid_pool->meter, 0, sizeof(squid_pool->meter)); |
| 192 | return pool; |
| 193 | } |
| 194 | |
| 195 | static void memPoolDestroy(ACL_MEM_POOL * pool) |
| 196 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…