| 374 | } |
| 375 | |
| 376 | size_t DefaultMemoryManager::getMemStepSize() { |
| 377 | lock_guard_t lock(this->memory_mutex); |
| 378 | return this->mem_step_size; |
| 379 | } |
| 380 | |
| 381 | void DefaultMemoryManager::setMemStepSize(size_t new_step_size) { |
| 382 | lock_guard_t lock(this->memory_mutex); |
no outgoing calls
no test coverage detected