--- libaitsched/example/test_time.c 2013/08/26 18:48:23 1.12 +++ libaitsched/example/test_time.c 2013/10/21 13:38:05 1.13 @@ -162,6 +162,12 @@ 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, + 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)) { printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); return 4; @@ -263,6 +269,7 @@ main(int argc, char **argv) printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); return 6; } + printf("query by task %d\n", schedQuery(task)); if (!schedSuspend(root, susp3, NULL, 0, NULL, 0)) { printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); return 6; @@ -272,6 +279,7 @@ main(int argc, char **argv) printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); return 7; } + 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()); return 7;