FACT++  1.0
void unpublishIntItemList ( )

Definition at line 3439 of file feeserver.c.

References dis_remove_service, and firstIntNode.

Referenced by initialize().

3439  {
3440  IntItemNode* current = 0;
3441 
3442  current = firstIntNode;
3443  while (current != 0) {
3444  dis_remove_service(current->id);
3445  current = current->next;
3446  }
3447  // pretending ItemList is completely empty to avoid access
3448  // to not existing elements
3449  intNodesAmount = 0;
3450  firstIntNode = 0;
3451  lastIntNode = 0;
3452 }
#define dis_remove_service
Definition: dis.h:19
static IntItemNode * firstIntNode
Definition: feeserver.c:281
static unsigned int intNodesAmount
Definition: feeserver.c:293
static IntItemNode * lastIntNode
Definition: feeserver.c:287

+ Here is the caller graph for this function: