PushBatch and PopBatch do not guarantee an ordering.
| 159 | |
| 160 | // PushBatch and PopBatch do not guarantee an ordering. |
| 161 | void PushBatch(int N, void** ptrs) { |
| 162 | for (int i = 0; i < N; ++i) { |
| 163 | list_.push_front(ptrs[i]); |
| 164 | } |
| 165 | } |
| 166 | |
| 167 | int PopBatch(int N, void** ret) { |
| 168 | int count = list_.size(); |
no test coverage detected