MCPcopy Create free account
hub / github.com/F-Stack/f-stack / __list_add_between

Function __list_add_between

freebsd/contrib/vchiq/interface/compat/list.h:114–122  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

112}
113
114static inline void
115__list_add_between(struct list_head *prev, struct list_head *node,
116 struct list_head *next)
117{
118 prev->next = node;
119 node->prev = prev;
120 node->next = next;
121 next->prev = node;
122}
123
124static inline void
125list_add(struct list_head *node, struct list_head *head)

Callers 2

list_addFunction · 0.85
list_add_tailFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected