| 2176 | |
| 2177 | #if OPENDDS_POOL_ALLOCATOR |
| 2178 | void |
| 2179 | Service_Participant::configure_pool() |
| 2180 | { |
| 2181 | const size_t pool_size = config_store_->get_uint32(COMMON_POOL_SIZE, |
| 2182 | COMMON_POOL_SIZE_default); |
| 2183 | const size_t pool_granularity = config_store_->get_uint32(COMMON_POOL_GRANULARITY, |
| 2184 | COMMON_POOL_GRANULARITY_default); |
| 2185 | if (pool_size) { |
| 2186 | SafetyProfilePool::instance()->configure_pool(pool_size, pool_granularity); |
| 2187 | SafetyProfilePool::instance()->install(); |
| 2188 | } |
| 2189 | } |
| 2190 | #endif |
| 2191 | |
| 2192 | #ifndef OPENDDS_NO_PERSISTENCE_PROFILE |
nothing calls this directly
no test coverage detected