FACT++  1.0
void dll_init ( DLL head)

Definition at line 14 of file dll.c.

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

Referenced by create_client(), dim_dtq_init(), dis_dns_init(), dis_hash_service_init(), dis_hash_service_insert(), dis_insert_request(), dis_start_serving_dns(), do_dis_add_cmnd_dns(), do_dis_add_service_dns(), dtq_create(), dummy_alrm_sig_handler(), handle_client_request(), handle_dns_info(), handle_registration(), init_dns_list(), insert_service(), request_command(), request_service(), and service_init().

15 {
16  DISABLE_AST
17  head->next = head;
18  head->prev = head;
19  ENABLE_AST
20 }
struct dll * prev
Definition: dim.h:532
struct dll * next
Definition: dim.h:531

+ Here is the caller graph for this function: