Go to the source code of this file.
Functions | |
void | main (void) |
void main | ( | void | ) |
Definition at line 61 of file event_test.c.
References hellow(), LARGE_NUMBER, muxevent_add_simple_arg, muxevent_initialize(), muxevent_run(), SIMULTANEOUS_EVENTS, TEST_ITERATIONS, testStrings, and utf8_test_valid().
00062 { 00063 int i; 00064 00065 muxevent_initialize(); 00066 for (i = 0; i < SIMULTANEOUS_EVENTS; i++) 00067 muxevent_add_simple_arg(i + 1, hellow, (int *) (LARGE_NUMBER * i)); 00068 for (i = 0; i < TEST_ITERATIONS; i++) { 00069 #ifdef TEST_TIME 00070 usleep(TEST_MSECS); 00071 #endif 00072 muxevent_run(); 00073 } 00074 }