Diff for /libaitsched/example/test.c between versions 1.6.8.9 and 1.6.8.10

version 1.6.8.9, 2012/08/02 13:02:46 version 1.6.8.10, 2012/08/02 13:45:02
Line 8 Line 8
 #include <sys/stat.h>  #include <sys/stat.h>
 #include <sys/socket.h>  #include <sys/socket.h>
 #include <netinet/in.h>  #include <netinet/in.h>
   #include "../inc/config.h"
 #include <aitsched.h>  #include <aitsched.h>
   
 intptr_t Kill;  intptr_t Kill;
#ifdef EVFILT_LIO#ifdef AIO_SUPPORT
 struct iovec iv[3], wiv[3], riv[3];  struct iovec iv[3], wiv[3], riv[3];
 #endif  #endif
   
Line 52  void *once(sched_task_t *arg) Line 53  void *once(sched_task_t *arg)
         return NULL;          return NULL;
 }  }
   
#ifdef EVFILT_LIO#ifdef AIO_SUPPORT
 void *aioread(sched_task_t *arg);  void *aioread(sched_task_t *arg);
 void *aiowrite(sched_task_t *arg)  void *aiowrite(sched_task_t *arg)
 {  {
Line 132  main(int argc, char **argv) Line 133  main(int argc, char **argv)
         struct timespec ts = { 20, 0 };          struct timespec ts = { 20, 0 };
 //      struct timespec p = { 0, 10000000 };  //      struct timespec p = { 0, 10000000 };
         struct sigaction sa;          struct sigaction sa;
#ifdef EVFILT_LIO#ifdef AIO_SUPPORT
         char *ole = malloc(BUFSIZ);          char *ole = malloc(BUFSIZ);
         register int i;          register int i;
 #endif  #endif
Line 198  main(int argc, char **argv) Line 199  main(int argc, char **argv)
                 return 6;                  return 6;
         }          }
   
#ifdef EVFILT_LIO#ifdef AIO_SUPPORT
         memset(ole, 0, BUFSIZ);          memset(ole, 0, BUFSIZ);
         if (!schedAIORead(root, aioread, (void*) f, fd, ole, BUFSIZ - 1, 0))          if (!schedAIORead(root, aioread, (void*) f, fd, ole, BUFSIZ - 1, 0))
                 printf("Warning:: #%d - %s\n", sched_GetErrno(), sched_GetError());                  printf("Warning:: #%d - %s\n", sched_GetErrno(), sched_GetError());
Line 240  main(int argc, char **argv) Line 241  main(int argc, char **argv)
         schedRun(root, &Kill);          schedRun(root, &Kill);
         schedEnd(&root);          schedEnd(&root);
   
#ifdef EVFILT_LIO#ifdef AIO_SUPPORT
         for (i = 0; i < 3; i++)          for (i = 0; i < 3; i++)
                 free(iv[i].iov_base);                  free(iv[i].iov_base);
 #endif  #endif

Removed from v.1.6.8.9  
changed lines
  Added in v.1.6.8.10


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