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

Function list_move_tail

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

Source from the content-addressed store, hash-verified

176}
177
178static inline void
179list_move_tail(struct list_head *node, struct list_head *head)
180{
181 list_del(node);
182 list_add_tail(node, head);
183}
184
185static inline void
186list_replace(struct list_head *old, struct list_head *new)

Callers

nothing calls this directly

Calls 2

list_delFunction · 0.70
list_add_tailFunction · 0.70

Tested by

no test coverage detected