MCPcopy Create free account
hub / github.com/RT-Thread/rt-thread / rt_slist_append

Function rt_slist_append

include/rtservice.h:197–207  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

195}
196
197rt_inline void rt_slist_append(rt_slist_t *l, rt_slist_t *n)
198{
199 struct rt_slist_node *node;
200
201 node = l;
202 while (node->next) node = node->next;
203
204 /* append the node to the tail */
205 node->next = n;
206 n->next = RT_NULL;
207}
208
209rt_inline void rt_slist_insert(rt_slist_t *l, rt_slist_t *n)
210{

Callers 15

rt_pm_device_registerFunction · 0.85
rt_link_sendFunction · 0.85
recv_cbFunction · 0.85
ulog_tag_lvl_filter_setFunction · 0.85
ulog_backend_registerFunction · 0.85
epoll_wqueue_callbackFunction · 0.85
epoll_ctl_installFunction · 0.85
epoll_doFunction · 0.85
signalfd_add_notifyFunction · 0.85
at_client_initFunction · 0.85
at_recvpkt_putFunction · 0.85
netdev_registerFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected