Diff for /libaitsched/src/aitsched.c between versions 1.23 and 1.23.2.3

version 1.23, 2013/11/21 14:39:10 version 1.23.2.3, 2014/01/28 13:17:08
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, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013Copyright 2004 - 2014
         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 335  schedFetch(sched_root_task_t * __restrict root) Line 335  schedFetch(sched_root_task_t * __restrict root)
 int  int
 schedTrigger(sched_task_t * __restrict task)  schedTrigger(sched_task_t * __restrict task)
 {  {
   #ifdef KQ_DISABLE
           sched_SetErr(ENOTSUP, "disabled kqueue support");
           return -1;
   #else
 #ifndef EVFILT_USER  #ifndef EVFILT_USER
         sched_SetErr(ENOTSUP, "Not supported kevent() filter");          sched_SetErr(ENOTSUP, "Not supported kevent() filter");
         return -1;          return -1;
Line 357  schedTrigger(sched_task_t * __restrict task) Line 361  schedTrigger(sched_task_t * __restrict task)
   
         return 0;          return 0;
 #endif  #endif
   #endif  /* KQ_DISABLE */
 }  }
   
 /*  /*

Removed from v.1.23  
changed lines
  Added in v.1.23.2.3


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