| 165 | } |
| 166 | |
| 167 | void |
| 168 | InstrStopNode(Instrumentation *instr, uint64 nTuples) |
| 169 | { |
| 170 | if (unlikely(instr->async_mode)) |
| 171 | InstrStopNodeAsync(instr, nTuples); |
| 172 | else |
| 173 | InstrStopNodeSync(instr, nTuples); |
| 174 | } |
| 175 | |
| 176 | /* Update tuple count */ |
| 177 | void |
no test coverage detected