Diff for /libaitsched/example/test_time.c between versions 1.12 and 1.13

version 1.12, 2013/08/26 18:48:23 version 1.13, 2013/10/21 13:38:05
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;
Line 272  main(int argc, char **argv) Line 279  main(int argc, char **argv)
                 printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());                  printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());
                 return 7;                  return 7;
         }          }
           printf("query by task %d\n", schedQuery(t));
         if (!schedThread(root, thr, "mdaaaa this is thread task", 131072, NULL, 0)) {          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;

Removed from v.1.12  
changed lines
  Added in v.1.13


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