* Stack producer operation for single producer and no concurrent consumers. */
| 288 | * Stack producer operation for single producer and no concurrent consumers. |
| 289 | */ |
| 290 | CK_CC_INLINE static void |
| 291 | ck_stack_push_spnc(struct ck_stack *target, struct ck_stack_entry *entry) |
| 292 | { |
| 293 | |
| 294 | entry->next = target->head; |
| 295 | target->head = entry; |
| 296 | return; |
| 297 | } |
| 298 | |
| 299 | /* |
| 300 | * Stack consumer operation for no concurrent producers and single consumer. |
no outgoing calls
no test coverage detected