MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / uv__queue_insert_tail

Function uv__queue_insert_tail

third-party/libuv-1.46.0/src/queue.h:77–83  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

75}
76
77static inline void uv__queue_insert_tail(struct uv__queue* h,
78 struct uv__queue* q) {
79 q->next = h;
80 q->prev = h->prev;
81 q->prev->next = q;
82 h->prev = q;
83}
84
85static inline void uv__queue_remove(struct uv__queue* q) {
86 q->prev->next = q->next;

Callers 15

workerFunction · 0.85
postFunction · 0.85
uv__work_cancelFunction · 0.85
uv_walkFunction · 0.85
uv-common.hFile · 0.85
uv__io_pollFunction · 0.85
uv__inotify_forkFunction · 0.85
uv__inotify_readFunction · 0.85
uv_fs_event_startFunction · 0.85
uv_async_initFunction · 0.85
uv__async_ioFunction · 0.85
uv__async_stopFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected