Diff for /libaitsched/inc/defs.h between versions 1.17 and 1.17.10.1

version 1.17, 2022/10/17 22:45:06 version 1.17.10.1, 2023/02/23 17:13:01
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 - 2022Copyright 2004 - 2023
         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 212  transit_task2unuse(sched_task_t * __restrict t, sched_ Line 212  transit_task2unuse(sched_task_t * __restrict t, sched_
         TASK_UNLOCK(t);          TASK_UNLOCK(t);
         TASK_TYPE(t) = taskUNUSE;          TASK_TYPE(t) = taskUNUSE;
         insert_task_to(t, &(TASK_ROOT(t))->root_unuse);          insert_task_to(t, &(TASK_ROOT(t))->root_unuse);
   }
   
   static inline void
   transit_task2ready(sched_task_t * __restrict t, sched_queue_t * __restrict q)
   {
           remove_task_from(t, q);
   
           t->task_type = taskREADY;
           insert_task_to(t, &(TASK_ROOT(t))->root_ready);
 }  }
   
   

Removed from v.1.17  
changed lines
  Added in v.1.17.10.1


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