1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
void *eintr_source (void *arg) { int ts = 0; if (arg) foo (); while (1) { if (arg) foo (); foo1 (&ts); } return 0; }