| 77 | } |
| 78 | |
| 79 | static void |
| 80 | bucket_stack_push(struct bucket_stack *stack, void *obj) |
| 81 | { |
| 82 | RTE_ASSERT(stack->top < stack->limit); |
| 83 | stack->objects[stack->top++] = obj; |
| 84 | } |
| 85 | |
| 86 | static void * |
| 87 | bucket_stack_pop_unsafe(struct bucket_stack *stack) |
no outgoing calls
no test coverage detected