Diff for /libaitsched/src/aitsched.c between versions 1.6 and 1.6.2.1

version 1.6, 2012/03/13 10:01:59 version 1.6.2.1, 2012/04/24 13:29:28
Line 494  schedRun(sched_root_task_t * __restrict root, volatile Line 494  schedRun(sched_root_task_t * __restrict root, volatile
                                                 schedCall(task);                                                  schedCall(task);
                                 }                                  }
                 } else                  } else
                        while ((task = root->root_hooks.hook_exec.fetch(root, NULL)))                        while (42)
                                schedCall(task);                                if ((task = root->root_hooks.hook_exec.fetch(root, NULL)))
                                         schedCall(task);
         }          }
   
         return 0;          return 0;

Removed from v.1.6  
changed lines
  Added in v.1.6.2.1


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>