MCPcopy Create free account
hub / github.com/apache/cloudberry / slist_is_empty

Function slist_is_empty

src/include/lib/ilist.h:581–587  ·  view source on GitHub ↗

* Is the list empty? */

Source from the content-addressed store, hash-verified

579 * Is the list empty?
580 */
581static inline bool
582slist_is_empty(slist_head *head)
583{
584 slist_check(head);
585
586 return head->head.next == NULL;
587}
588
589/*
590 * Insert a node at the beginning of the list.

Callers 5

EventTriggerSQLDropFunction · 0.85
dsm_detachFunction · 0.85
reset_on_dsm_detachFunction · 0.85
slist_pop_head_nodeFunction · 0.85
slist_head_element_offFunction · 0.85

Calls 1

slist_checkFunction · 0.85

Tested by

no test coverage detected