Diff for /libaitsched/src/aitsched.c between versions 1.30.2.1 and 1.30.2.2

version 1.30.2.1, 2023/02/23 15:36:41 version 1.30.2.2, 2023/02/23 15:39:07
Line 389  schedEnd(sched_root_task_t ** __restrict root) Line 389  schedEnd(sched_root_task_t ** __restrict root)
   
         if ((*root)->root_sigthr) {          if ((*root)->root_sigthr) {
                 pthread_cancel((*root)->root_sigthr);                  pthread_cancel((*root)->root_sigthr);
                (*root)->root_sigthr ^= (*root)->root_sigthr;                (*root)->root_sigthr = NULL;
         }          }
 #endif  #endif
   
Line 1152  schedSignalDispatch(sched_root_task_t * __restrict roo Line 1152  schedSignalDispatch(sched_root_task_t * __restrict roo
   
         if (!on) {          if (!on) {
                 pthread_cancel(root->root_sigthr);                  pthread_cancel(root->root_sigthr);
                root->root_sigthr ^= root->root_sigthr;                root->root_sigthr = NULL;
                 return 0;                  return 0;
         }          }
   

Removed from v.1.30.2.1  
changed lines
  Added in v.1.30.2.2


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