| 156 | } |
| 157 | |
| 158 | void |
| 159 | Wasm::removeTimerPeriod(uint32_t root_context_id) |
| 160 | { |
| 161 | auto it = timer_period_.find(root_context_id); |
| 162 | if (it != timer_period_.end()) { |
| 163 | timer_period_.erase(it); |
| 164 | } |
| 165 | } |
| 166 | |
| 167 | // function to override error report |
| 168 | void |
no test coverage detected