Diff for /libaitsched/src/aitsched.c between versions 1.6.2.3 and 1.6.2.4

version 1.6.2.3, 2012/04/26 08:15:22 version 1.6.2.4, 2012/05/03 15:05:09
Line 93  sched_SetErr(int eno, char *estr, ...) Line 93  sched_SetErr(int eno, char *estr, ...)
 int  int
 schedRegisterHooks(sched_root_task_t * __restrict root)  schedRegisterHooks(sched_root_task_t * __restrict root)
 {  {
        if (!root || (root->root_data.iov_base && root->root_data.iov_len))        assert(root);
                return -1; 
   
         if (root->root_hooks.hook_root.fini)          if (root->root_hooks.hook_root.fini)
                 root->root_hooks.hook_root.fini(root, NULL);                  root->root_hooks.hook_root.fini(root, NULL);

Removed from v.1.6.2.3  
changed lines
  Added in v.1.6.2.4


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