| 514 | } |
| 515 | |
| 516 | void |
| 517 | ink_atomiclist_init(InkAtomicList *l, const char *name, uint32_t offset_to_next) |
| 518 | { |
| 519 | l->name = name; |
| 520 | l->offset = offset_to_next; |
| 521 | SET_FREELIST_POINTER_VERSION(l->head, FROM_PTR(0), 0); |
| 522 | } |
| 523 | |
| 524 | void * |
| 525 | ink_atomiclist_pop(InkAtomicList *l) |
no outgoing calls