--- libaitsched/example/test_time.c 2013/08/15 19:10:48 1.11 +++ libaitsched/example/test_time.c 2023/02/25 15:55:00 1.15 @@ -4,11 +4,11 @@ #include #include #include -#include #include #include #include #include +#include "../inc/config.h" intptr_t Kill; sched_root_task_t *root; @@ -162,6 +162,12 @@ main(int argc, char **argv) printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); return 4; } + 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 %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()); return 4; @@ -204,10 +210,13 @@ main(int argc, char **argv) return 4; } +#if SUP_ENABLE == KQ_SUPPORT if (!schedAlarm(root, alarmz, (void*) (intptr_t) ts.tv_sec, ts, NULL, 0)) { printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); return 5; - } else { + } else +#endif + { ts.tv_sec = 3; ts.tv_nsec = 500000000; } @@ -221,6 +230,7 @@ main(int argc, char **argv) return 5; } +#if SUP_ENABLE == KQ_SUPPORT if (!schedAlarm(root, alarmz, (void*) (intptr_t) ts.tv_sec, ts, (void*) 1, 0)) { printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); return 5; @@ -228,14 +238,18 @@ main(int argc, char **argv) if (!schedAlarm(root, alarmz, (void*) (intptr_t) ts.tv_sec, ts, (void*) 2, 0)) { printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); return 5; - } else { + } else +#endif + { ts.tv_sec = 0; ts.tv_nsec = 700000000; } +#if SUP_ENABLE == KQ_SUPPORT if (!schedAlarm(root, alarmz, (void*) (intptr_t) ts.tv_sec, ts, (void*) 3, 0)) { printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); return 5; } +#endif #ifdef EVFILT_USER if (!(tt[0] = schedUser(root, user, NULL, 42, 0, 0))) { @@ -263,38 +277,40 @@ 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; } - 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()); 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()); 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()); 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()); return 7; } printf("try to cancel tid = %lx\n", TASK_VAL(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()); 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()); 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()); return 7; } @@ -328,11 +344,13 @@ main(int argc, char **argv) #endif schedResumeby(root, CRITERIA_DATA, task); +#if SUP_ENABLE == KQ_SUPPORT if (!schedSignal(root, sigz, NULL, SIGUSR1, 0, 0)) { printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); close(f); return 9; } +#endif #ifdef EVFILT_USER schedTrigger(tt[2]);