Diff for /libaitsched/inc/hooks.h between versions 1.1 and 1.3

version 1.1, 2011/08/05 15:52:00 version 1.3, 2012/03/13 10:01:59
Line 103  void *sched_hook_read(void *task, void *arg __unused); Line 103  void *sched_hook_read(void *task, void *arg __unused);
  */   */
 void *sched_hook_write(void *task, void *arg __unused);  void *sched_hook_write(void *task, void *arg __unused);
   
   /*
    * sched_hook_exception() - Default EXCEPTION hook
    * @root = root task
    * @arg = custom handling: if arg == EV_EOF or other value; default: arg == NULL log errno
    * return: <0 errors and 0 ok
    */
   void *sched_hook_exception(void *root, void *arg);
   
   /*
    * sched_hook_condition() - Default CONDITION hook
    *
    * @root = root task
    * @arg = killState from schedRun()
    * return: NULL kill scheduler loop or !=NULL ok
    */
   void *sched_hook_condition(void *root, void *arg);
   
   
 #endif  #endif

Removed from v.1.1  
changed lines
  Added in v.1.3


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