FACT++  1.0
int main ( int  argc,
char **  arg 
)

Main of FeeServer. This programm represents the DIM-Server running on the DCS-boards. It uses the DIM-Server-Library implemented by C. Gaspar from Cern.

Author
Christian Kofler, Sebastian Bablok
Date
2003-04-24

2004-11-22 (and many more dates ...)

Version
0.8.1

Definition at line 363 of file feeserver.c.

References initialize().

363  {
364  //-- only for unit tests
365 # ifdef __UTEST
366  // insert here the testfunction-calls
367  testFrameWork();
368  return 0;
369 # endif
370 
371  // now here starts the real stuff
372  initialize();
373  // test server (functional test)
374  while (1) {
375  // maybe do some checks here, like:
376  // - monitoring thread is still in good state
377  // - CE is still in good state
378  // - everything within the FeeServer is OK (assertions?)
379  pause();
380  }
381  return 0;
382 }
void initialize()
Definition: feeserver.c:385

+ Here is the call graph for this function: