Diff for /libaitsched/inc/aitsched.h between versions 1.2.2.3 and 1.2.2.6

version 1.2.2.3, 2011/10/04 20:12:01 version 1.2.2.6, 2011/11/30 23:44:57
Line 50  SUCH DAMAGE. Line 50  SUCH DAMAGE.
 #include <sys/types.h>  #include <sys/types.h>
 #include <sys/queue.h>  #include <sys/queue.h>
 #include <sys/uio.h>  #include <sys/uio.h>
   #include <stdint.h>
   
   
 /* criteria type */  /* criteria type */
Line 125  struct sched_Task { Line 126  struct sched_Task {
         void                            *task_arg;          void                            *task_arg;
         union {          union {
                 unsigned long   v;                  unsigned long   v;
                int             fd;                intptr_t        fd;
                 struct timeval  tv;                  struct timeval  tv;
         }                               task_val;          }                               task_val;
 #define TASK_ARG(x)     (x)->task_arg  #define TASK_ARG(x)     (x)->task_arg
Line 164  struct sched_RootTask { Line 165  struct sched_RootTask {
   
 inline int sched_GetErrno();  inline int sched_GetErrno();
 inline const char *sched_GetError();  inline const char *sched_GetError();
 inline void sched_SetErr(int, char *, ...);  
   
   
 /*  /*

Removed from v.1.2.2.3  
changed lines
  Added in v.1.2.2.6


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