| 331 | } |
| 332 | |
| 333 | static bool |
| 334 | write_pointer_version(head_p *dst, head_p old_h, void *ptr, head_p::version_type vers) |
| 335 | { |
| 336 | head_p tmp_h; |
| 337 | |
| 338 | SET_FREELIST_POINTER_VERSION(tmp_h, ptr, vers); |
| 339 | return ink_atomic_cas(&dst->data, old_h.data, tmp_h.data); |
| 340 | } |
| 341 | |
| 342 | LogBuffer * |
| 343 | LogObject::_checkout_write(size_t *write_offset, size_t bytes_needed) |
no test coverage detected