Diff for /libaitsched/src/aitsched.c between versions 1.36.4.1 and 1.38

version 1.36.4.1, 2024/03/20 12:48:45 version 1.38, 2026/05/19 15:53:56
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 - 2024Copyright 2004 - 2026
         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 444  schedCall(sched_task_t * __restrict task) Line 444  schedCall(sched_task_t * __restrict task)
         if (!TASK_ISLOCKED(task))          if (!TASK_ISLOCKED(task))
                 TASK_LOCK(task);                  TASK_LOCK(task);
   
           if (task->task_root->root_hooks.hook_exec.profile)
                   task->task_root->root_hooks.hook_exec.profile(task->task_root, (void*) 0);
         ptr = task->task_func(task);          ptr = task->task_func(task);
           if (task->task_root->root_hooks.hook_exec.profile)
                   task->task_root->root_hooks.hook_exec.profile(task->task_root, (void*) 1);
   
         TASK_UNLOCK(task);          TASK_UNLOCK(task);
         return ptr;          return ptr;

Removed from v.1.36.4.1  
changed lines
  Added in v.1.38


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