FACT++  1.0
void dll_insert_queue ( DLL head,
DLL item 
)

Definition at line 23 of file dll.c.

References dll::next, and dll::prev.

Referenced by create_client(), create_dns(), dic_add_dns(), dis_add_dns(), dis_hash_service_insert(), dis_insert_request(), handle_client_request(), handle_dns_info(), handle_registration(), insert_service(), move_to_bad_service(), move_to_cmnd_service(), move_to_notok_service(), move_to_ok_service(), and service_insert().

24 {
25  register DLL *prevp;
26 
27  DISABLE_AST
28  item->next = head;
29  prevp = head->prev;
30  item->prev = prevp;
31  prevp->next = item;
32  head->prev = item;
33  ENABLE_AST
34 }
struct dll * prev
Definition: dim.h:532
struct dll * next
Definition: dim.h:531
Definition: dim.h:530

+ Here is the caller graph for this function: