| 217 | } |
| 218 | |
| 219 | void PopRange(int N, void **start, void **end) { |
| 220 | SLL_PopRange(&list_, N, start, end); |
| 221 | ASSERT(length_ >= (unsigned int)N); |
| 222 | length_ -= N; |
| 223 | if (length_ < lowater_) lowater_ = length_; |
| 224 | } |
| 225 | }; |
| 226 | |
| 227 | // The number of bytes one ThreadCache will steal from another when |
no test coverage detected