Diff for /libaitsched/example/test_time.c between versions 1.8.2.2 and 1.10.8.3

version 1.8.2.2, 2012/08/23 02:17:48 version 1.10.8.3, 2013/08/15 18:39:00
Line 32  void *timer(sched_task_t *arg) Line 32  void *timer(sched_task_t *arg)
         taskExit(arg, NULL);          taskExit(arg, NULL);
 }  }
   
   void *rtc(sched_task_t *arg)
   {
           printf("RTC %p sec:: rtc id %lx\n", TASK_ARG(arg), (long) TASK_DATA(arg));
           taskExit(arg, NULL);
   }
   
 void *alarmz(sched_task_t *arg)  void *alarmz(sched_task_t *arg)
 {  {
         printf("Alarm %ld sec::\n", (u_long) TASK_ARG(arg));          printf("Alarm %ld sec::\n", (u_long) TASK_ARG(arg));
Line 40  void *alarmz(sched_task_t *arg) Line 46  void *alarmz(sched_task_t *arg)
   
 void *node(sched_task_t *arg)  void *node(sched_task_t *arg)
 {  {
        printf("Node %s data %d fflags 0x%X\n", (char*) TASK_ARG(arg), TASK_RET(arg), TASK_FLAG(arg));        printf("Node %s data %ld fflags 0x%X\n", (char*) TASK_ARG(arg), (long) TASK_RET(arg), TASK_FLAG(arg));
         taskExit(arg, NULL);          taskExit(arg, NULL);
 }  }
   
 void *proc(sched_task_t *arg)  void *proc(sched_task_t *arg)
 {  {
        printf("Proc pid=%ld data %d fflags 0x%X\n", TASK_VAL(arg), TASK_RET(arg), TASK_FLAG(arg));        printf("Proc pid=%ld data %ld fflags 0x%X\n", TASK_VAL(arg), (long) TASK_RET(arg), TASK_FLAG(arg));
         taskExit(arg, NULL);          taskExit(arg, NULL);
 }  }
   
 void *sigz(sched_task_t *arg)  void *sigz(sched_task_t *arg)
 {  {
        printf("Signal signal=%ld how many times %d\n", TASK_VAL(arg), TASK_RET(arg));        printf("Signal signal=%ld how many times %ld\n", TASK_VAL(arg), (long) TASK_RET(arg));
         taskExit(arg, NULL);          taskExit(arg, NULL);
 }  }
   
Line 107  void *thr4kill(sched_task_t *arg) Line 113  void *thr4kill(sched_task_t *arg)
 void sig(int s)  void sig(int s)
 {  {
         switch (s) {          switch (s) {
                   case SIGINT:
                 case SIGTERM:                  case SIGTERM:
                         Kill++;                          Kill++;
                         break;                          break;
Line 133  main(int argc, char **argv) Line 140  main(int argc, char **argv)
         sa.sa_handler = sig;          sa.sa_handler = sig;
         sigemptyset(&sa.sa_mask);          sigemptyset(&sa.sa_mask);
         sigaction(SIGTERM, &sa, NULL);          sigaction(SIGTERM, &sa, NULL);
           sigaction(SIGINT, &sa, NULL);
         sigaction(SIGUSR1, &sa, NULL);          sigaction(SIGUSR1, &sa, NULL);
   
         root = schedBegin();          root = schedBegin();
Line 141  main(int argc, char **argv) Line 149  main(int argc, char **argv)
                 return 1;                  return 1;
         }          }
   
           if (!schedRTC(root, rtc, (void*) (intptr_t) ts.tv_sec, ts, NULL, 0)) {
                   printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());
                   return 4;
           }
         if (!schedTimer(root, timer, (void*) (intptr_t) ts.tv_sec, ts, NULL, 0)) {          if (!schedTimer(root, timer, (void*) (intptr_t) ts.tv_sec, ts, NULL, 0)) {
                 printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());                  printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());
                 return 4;                  return 4;
         } else          } else
                 ts.tv_sec = 15;                  ts.tv_sec = 15;
           if (!schedRTC(root, rtc, (void*) (intptr_t) ts.tv_sec, ts, (void*) 1, 0)) {
                   printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());
                   return 4;
           }
         if (!schedTimer(root, timer, (void*) (intptr_t) ts.tv_sec, ts, NULL, 0)) {          if (!schedTimer(root, timer, (void*) (intptr_t) ts.tv_sec, ts, NULL, 0)) {
                 printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());                  printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());
                 return 4;                  return 4;
Line 179  main(int argc, char **argv) Line 195  main(int argc, char **argv)
                 return 4;                  return 4;
         }          }
   
           /*
           if (!schedRTC(root, rtc, (void*) (intptr_t) ts.tv_sec, ts, (void*) 3, 0)) {
                   printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());
                   return 4;
           }
           if (!schedRTC(root, rtc, (void*) (intptr_t) ts.tv_sec, ts, (void*) 2, 0)) {
                   printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());
                   return 4;
           }
           */
   
         if (!schedAlarm(root, alarmz, (void*) (intptr_t) ts.tv_sec, ts, NULL, 0)) {          if (!schedAlarm(root, alarmz, (void*) (intptr_t) ts.tv_sec, ts, NULL, 0)) {
                 printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());                  printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());
                 return 5;                  return 5;
Line 234  main(int argc, char **argv) Line 261  main(int argc, char **argv)
                 return 6;                  return 6;
         }          }
   
        if (!(t = schedThread(root, thr4kill, "0aaaa", 0, NULL, 0))) {        if (!(t = schedThread(root, thr4kill, "0aaaa", 0, 0, NULL, 0))) {
                 printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());                  printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());
                 return 7;                  return 7;
         }          }
        if (!schedThread(root, thr, "mdaaaa this is thread task", 0, NULL, 0)) {        if (!schedThread(root, thr, "mdaaaa this is thread task", 0, 131072, NULL, 0)) {
                 printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());                  printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());
                 return 7;                  return 7;
         }          }
        if (!schedThread(root, thr, "mdaaaa this is thread task -detached", 42, NULL, 0)) {        if (!schedThread(root, thr, "mdaaaa this is thread task -detached", 42, 0, NULL, 0)) {
                 printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());                  printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());
                 return 7;                  return 7;
         }          }
        if (!schedThread(root, thr, "mdaaaa this is thread task -j", 0, NULL, 0)) {        if (!schedThread(root, thr, "mdaaaa this is thread task -j", 0, 131072, NULL, 0)) {
                 printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());                  printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());
                 return 7;                  return 7;
         }          }
         printf("try to cancel tid = %lx\n", TASK_VAL(t));          printf("try to cancel tid = %lx\n", TASK_VAL(t));
         schedCancel(t);          schedCancel(t);
        if (!schedThread(root, thr, "mdaaaa this is thread task -j2", 0, NULL, 0)) {        if (!schedThread(root, thr, "mdaaaa this is thread task -j2", 0, 131072 * 2, NULL, 0)) {
                 printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());                  printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());
                 return 7;                  return 7;
         }          }
        if (!(t = schedThread(root, thr4kill, "0aaaa", 42, NULL, 0))) {        if (!(t = schedThread(root, thr4kill, "0aaaa", 42, /*4096*/0, NULL, 0))) {
                 printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());                  printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());
                 return 7;                  return 7;
         }          }
        if (!schedThread(root, thr, "mdaaaa this is thread task -j3", 0, NULL, 0)) {        if (!schedThread(root, thr, "mdaaaa this is thread task -j3", 0, 0, NULL, 0)) {
                 printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());                  printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());
                 return 7;                  return 7;
         }          }

Removed from v.1.8.2.2  
changed lines
  Added in v.1.10.8.3


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