#include <sys/wait.h>#include <stdio.h>#include <errno.h>#include <sys/types.h>#include <sys/stat.h>#include <fcntl.h>#include <signal.h>#include <tango.h>#include <StarterUtil.h>#include <Starter.h>#include <StarterClass.h>Namespaces | |
| namespace | Starter |
Defines | |
| #define | DECLARE_TIME_VAR struct timeval before, after; |
| #define | GET_TIME(t) gettimeofday(&t, NULL); |
| #define | ELAPSED(before, after) |
Variables | |
| const char * | RcsId = "$Header: /cvsroot/tango-cs/tango/cppserver/starter/doc_html/html/Starter1_8cpp.html,v 1.1 2003/10/08 09:18:03 pascal_verdier Exp $" |
|
|
|
|
|
Value: 1000.0*(after.tv_sec-before.tv_sec) + \
(double) (after.tv_usec-before.tv_usec) / 1000; |
|
|
|
|
|
|