Diff for /libaitsched/example/test_time.c between versions 1.14 and 1.15

version 1.14, 2014/06/05 22:37:29 version 1.15, 2023/02/25 15:55:00
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 call %p\n", schedQueryby(root, taskRTC, CRITERIA_CALL, rtc));
        printf("query by any %d\n", schedQueryby(root, taskRTC, CRITERIA_ANY, NULL));        printf("query by any %p\n", schedQueryby(root, taskRTC, CRITERIA_ANY, NULL));
        printf("query by call in all queues %d\n", schedQueryby(root, taskMAX,         printf("query by call in all queues %p\n", schedQueryby(root, taskMAX, 
                                 CRITERIA_ANY, NULL));                                  CRITERIA_ANY, NULL));
        printf("query by call in wrong queue %d\n", schedQueryby(root, taskTHREAD,         printf("query by call in wrong queue %p\n", schedQueryby(root, taskTHREAD, 
                                 CRITERIA_CALL, rtc));                                  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());

Removed from v.1.14  
changed lines
  Added in v.1.15


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