Diff for /libaitsched/src/tasks.c between versions 1.27 and 1.28

version 1.27, 2019/01/14 15:58:50 version 1.28, 2021/06/08 21:45:07
Line 12  terms: Line 12  terms:
 All of the documentation and software included in the ELWIX and AITNET  All of the documentation and software included in the ELWIX and AITNET
 Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org>  Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org>
   
Copyright 2004 - 2018Copyright 2004 - 2019
         by Michael Pounov <misho@elwix.org>.  All rights reserved.          by Michael Pounov <misho@elwix.org>.  All rights reserved.
   
 Redistribution and use in source and binary forms, with or without  Redistribution and use in source and binary forms, with or without
Line 307  schedNode2(sched_root_task_t * __restrict root, sched_ Line 307  schedNode2(sched_root_task_t * __restrict root, sched_
         TASK_DATLEN(task) = opt_dlen;          TASK_DATLEN(task) = opt_dlen;
   
         if (root->root_hooks.hook_add.node)          if (root->root_hooks.hook_add.node)
   #ifdef __FreeBSD__
                 ptr = root->root_hooks.hook_add.node(task,                   ptr = root->root_hooks.hook_add.node(task, 
                                 (void*) (NOTE_READ | NOTE_CLOSE_WRITE | NOTE_CLOSE | NOTE_OPEN));                                  (void*) (NOTE_READ | NOTE_CLOSE_WRITE | NOTE_CLOSE | NOTE_OPEN));
   #else
                   ptr = root->root_hooks.hook_add.node(task, NULL);
   #endif
         else          else
                 ptr = NULL;                  ptr = NULL;
   

Removed from v.1.27  
changed lines
  Added in v.1.28


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