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

version 1.6.8.9, 2012/08/02 13:02:46 version 1.8.4.1, 2012/08/21 11:45:34
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 21  void *event(sched_task_t *arg) Line 22  void *event(sched_task_t *arg)
         return NULL;          return NULL;
 }  }
   
void *eventlo(sched_task_t *arg)void *regular(sched_task_t *arg)
 {  {
        printf("EventLOW::\n");        printf("Task::\n");
         return NULL;          return NULL;
 }  }
   
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 114  void *aiobulkwrite(sched_task_t *arg) Line 115  void *aiobulkwrite(sched_task_t *arg)
 }  }
 #endif  #endif
   
   void *thr(sched_task_t *arg)
   {
           printf("thread(%lu):: %s\n", TASK_VAL(arg), (char*) TASK_ARG(arg));
           taskExit(arg, 42);
   }
   
 void sig(int s)  void sig(int s)
 {  {
         switch (s) {          switch (s) {
Line 132  main(int argc, char **argv) Line 139  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 178  main(int argc, char **argv) Line 185  main(int argc, char **argv)
                 return 2;                  return 2;
         }          }
   
        if (!schedEventLo(root, eventlo, "piuk", 1111, NULL, 0)) {        if (!schedTask(root, regular, "piuk", 1111, NULL, 0)) {
                 printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());                  printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());
                 return 3;                  return 3;
         }          }
Line 198  main(int argc, char **argv) Line 205  main(int argc, char **argv)
                 return 6;                  return 6;
         }          }
   
#ifdef EVFILT_LIO        if (!schedThread(root, thr, "mdaaaa this is thread task", 0, NULL, 0)) {
                 printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());
                 return 7;
         }
         if (!schedThread(root, thr, "mdaaaa this is thread task -detached", 42, NULL, 0)) {
                 printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());
                 return 7;
         }
         if (!schedThread(root, thr, "mdaaaa this is thread task -j", 0, NULL, 0)) {
                 printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());
                 return 7;
         }
 
 #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 260  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.8.4.1


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