| 123 | } |
| 124 | |
| 125 | ACL_ALLOCATOR *acl_allocator_create(size_t mem_limit) |
| 126 | { |
| 127 | ACL_ALLOCATOR *allocator; |
| 128 | |
| 129 | allocator = squid_allocator_create(); |
| 130 | if (allocator->pool_config_fn) |
| 131 | allocator->pool_config_fn(allocator, mem_limit); |
| 132 | |
| 133 | /* ��������Ĭ�ϵ��ڴ�������ͳ� */ |
| 134 | mem_pool_create(allocator); |
| 135 | vstring_pool_create(allocator); |
| 136 | |
| 137 | return allocator; |
| 138 | } |
| 139 | |
| 140 | void acl_allocator_ctl(int name, ...) |
| 141 | { |
no test coverage detected
searching dependent graphs…