// $Id: main.c 130 2009-06-30 12:31:46Z rosiere $ //=====[ main ]================================================================= /* * All thread execute this routine * Initialize the thread and attribute a Workload at each thread */ #include #include "dhry21.h" #ifndef DHRYSTONE_NB_RUNS # error "DHRYSTONE_NB_RUNS must be defined." #endif int main() { dhry21(DHRYSTONE_NB_RUNS); exit (0); while (1); }