--- libaitsched/src/aitsched.c 2011/08/13 17:26:26 1.1.1.1.2.3 +++ libaitsched/src/aitsched.c 2011/08/13 17:28:17 1.1.1.1.2.4 @@ -3,7 +3,7 @@ * by Michael Pounov * * $Author: misho $ -* $Id: aitsched.c,v 1.1.1.1.2.3 2011/08/13 17:26:26 misho Exp $ +* $Id: aitsched.c,v 1.1.1.1.2.4 2011/08/13 17:28:17 misho Exp $ * ************************************************************************** The ELWIX and AITNET software is distributed under the following @@ -375,10 +375,8 @@ schedRun(sched_root_task_t * __restrict root) if (root->root_hooks.hook_exec.run(root, NULL)) return -1; if (root->root_hooks.hook_exec.fetch) - while ((task = root->root_hooks.hook_exec.fetch(root, NULL))) { - printf("task=%p\n", task); + while ((task = root->root_hooks.hook_exec.fetch(root, NULL))) schedCall(task); - } return 0; }