FACT++  1.0
void unlockIssueMutex ( )

Definition at line 1378 of file feeserver.c.

References createLogMessage().

Referenced by command_handler().

1378  {
1379  int status = -1;
1380 
1381  status = pthread_mutex_unlock(&wait_mut);
1382  if (status != 0) {
1383 # ifdef __DEBUG
1384  printf("Unlock condition mutex error: %d. Going in ERROR state!\n", status);
1385  fflush(stdout);
1386 # endif
1387  createLogMessage(MSG_ALARM,
1388  "Unable to unlock watchdog mutex. No more commands will be possible for CE. Going in ERROR state!",
1389  0);
1390  state = ERROR_STATE;
1391  }
1392 }
void createLogMessage(unsigned int type, char *description, char *origin)
Definition: feeserver.c:1530
static pthread_mutex_t wait_mut
Definition: feeserver.c:254

+ Here is the call graph for this function:

+ Here is the caller graph for this function: