--- libaitsched/example/test_time.c 2014/06/05 22:37:29 1.14 +++ libaitsched/example/test_time.c 2023/02/25 15:55:00 1.15 @@ -162,11 +162,11 @@ main(int argc, char **argv) printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); 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, + printf("query by call %p\n", schedQueryby(root, taskRTC, CRITERIA_CALL, rtc)); + printf("query by any %p\n", schedQueryby(root, taskRTC, CRITERIA_ANY, NULL)); + printf("query by call in all queues %p\n", schedQueryby(root, taskMAX, 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)); if (!schedTimer(root, timer, (void*) (intptr_t) ts.tv_sec, ts, NULL, 0)) { printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());