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

Function list_move

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

Source from the content-addressed store, hash-verified

169}
170
171static inline void
172list_move(struct list_head *node, struct list_head *head)
173{
174 list_del(node);
175 list_add(node, head);
176}
177
178static inline void
179list_move_tail(struct list_head *node, struct list_head *head)

Callers

nothing calls this directly

Calls 2

list_addFunction · 0.85
list_delFunction · 0.70

Tested by

no test coverage detected