Diff for /libaitsched/example/test_time.c between versions 1.10.8.6 and 1.12.4.1

version 1.10.8.6, 2013/08/15 18:58:09 version 1.12.4.1, 2013/10/21 13:37:28
Line 162  main(int argc, char **argv) Line 162  main(int argc, char **argv)
                 printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());                  printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());
                 return 4;                  return 4;
         }          }
           printf("query by call %d\n", schedQueryby(root, taskRTC, CRITERIA_CALL, rtc));
           printf("query by any %d\n", schedQueryby(root, taskRTC, CRITERIA_ANY, NULL));
           printf("query by call in all queues %d\n", schedQueryby(root, taskMAX, 
                                   CRITERIA_ANY, NULL));
           printf("query by call in wrong queue %d\n", schedQueryby(root, taskTHREAD, 
                                   CRITERIA_CALL, rtc));
         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 263  main(int argc, char **argv) Line 269  main(int argc, char **argv)
                 printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());                  printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());
                 return 6;                  return 6;
         }          }
           printf("query by task %d\n", schedQuery(task));
         if (!schedSuspend(root, susp3, NULL, 0, NULL, 0)) {          if (!schedSuspend(root, susp3, NULL, 0, NULL, 0)) {
                 printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());                  printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());
                 return 6;                  return 6;
         }          }
   
        if (!(t = schedThread(root, thr4kill, "0aaaa", 0, 0, NULL, 0))) {        if (!(t = schedThread(root, thr4kill, "0aaaa", 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, 131072, NULL, 0)) {        printf("query by task %d\n", schedQuery(t));
         if (!schedThread(root, thr, "mdaaaa this is thread task", 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, 0, NULL, 0)) {        if (!schedThread(root, thr, "mdaaaa this is thread task -detached", 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, 131072, NULL, 0)) {        if (!schedThread(root, thr, "mdaaaa this is thread task -j", 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, 131072 * 2, NULL, 0)) {        if (!schedThread(root, thr, "mdaaaa this is thread task -j2", 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, /*4096*/0, NULL, 0))) {        if (!(t = schedThread(root, thr4kill, "0aaaa", /*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, 0, NULL, 0)) {        if (!schedThread(root, thr, "mdaaaa this is thread task -j3", 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.10.8.6  
changed lines
  Added in v.1.12.4.1


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