FACT++  1.0
static EXIT_H* find_exit_handler_item ( int  conn_id)
static

Definition at line 3087 of file dis.c.

References sll_search().

Referenced by add_exit_handler(), dis_set_client_exit_handler(), and do_exit_handler().

3088 {
3089  EXIT_H *exitp;
3090 
3091  DISABLE_AST;
3092  if(!Exit_h_head)
3093  {
3094  ENABLE_AST;
3095  return((EXIT_H *)0);
3096  }
3097  if( (exitp = (EXIT_H *) sll_search((SLL *) Exit_h_head, (char *) &conn_id, 4)) )
3098  {
3099  ENABLE_AST;
3100  return(exitp);
3101  }
3102  ENABLE_AST;
3103  return((EXIT_H *)0);
3104 }
static EXIT_H * Exit_h_head
Definition: dis.c:139
Definition: dim.h:536
Definition: dis.c:131
SLL * sll_search(SLL *head, char *data, int size)
Definition: sll.c:35

+ Here is the call graph for this function:

+ Here is the caller graph for this function: