// $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 int main() { FILE * file = fopen("Test_068.txt","w"); if (file == NULL) exit (1); fprintf(file,"Hello World !!!\n"); if (fclose (file) != 0) exit (2); exit (0); while (1); }