FACT++  1.0
IntItem* createIntItem ( )

Definition at line 3471 of file feeserver.c.

References Memory::malloc().

Referenced by fillIntItem().

3471  {
3472  IntItem* intItem = 0;
3473 
3474  intItem = (IntItem*) malloc(sizeof(IntItem));
3475  if (intItem == 0) {
3476  //no memory available!
3477 # ifdef __DEBUG
3478  printf("no memory available!\n");
3479 # endif
3480  return 0;
3481  }
3482  intItem->location = 0;
3483  intItem->name = 0;
3484  intItem->defaultDeadband = 0;
3485  return intItem;
3486 }
void * malloc()
Definition: EventBuilder.cc:99

+ Here is the call graph for this function:

+ Here is the caller graph for this function: