// $Id: main.c 114 2009-04-16 22:35:37Z rosiere $ //=====[ main ]================================================================= /* * All thread execute this routine * Initialize the thread and attribute a Workload at each thread */ #include #include #include #include #include int main() { time_t tnow; time(&tnow); fprintf(stdout,"%s",ctime(&tnow)); exit (0); while (1); }