--- libaitsched/src/aitsched.c 2012/03/13 10:01:59 1.6 +++ libaitsched/src/aitsched.c 2012/04/24 13:29:28 1.6.2.1 @@ -3,7 +3,7 @@ * by Michael Pounov * * $Author: misho $ -* $Id: aitsched.c,v 1.6 2012/03/13 10:01:59 misho Exp $ +* $Id: aitsched.c,v 1.6.2.1 2012/04/24 13:29:28 misho Exp $ * ************************************************************************** The ELWIX and AITNET software is distributed under the following @@ -494,8 +494,9 @@ schedRun(sched_root_task_t * __restrict root, volatile schedCall(task); } } else - while ((task = root->root_hooks.hook_exec.fetch(root, NULL))) - schedCall(task); + while (42) + if ((task = root->root_hooks.hook_exec.fetch(root, NULL))) + schedCall(task); } return 0;