--- libaitsched/example/test_time.c 2012/05/31 22:14:22 1.3.2.5 +++ libaitsched/example/test_time.c 2012/08/21 13:01:58 1.8.2.1 @@ -11,62 +11,79 @@ #include intptr_t Kill; +sched_root_task_t *root; void *event(sched_task_t *arg) { printf("Event::\n"); - return NULL; + taskExit(arg, NULL); } -void *eventlo(sched_task_t *arg) +void *regular(sched_task_t *arg) { - printf("EventLOW::\n"); - return NULL; + printf("Task(%lu):: %s\n", TASK_VAL(arg), (char*) TASK_ARG(arg)); + fflush(stdout); + taskExit(arg, NULL); } void *timer(sched_task_t *arg) { printf("Timer %p sec::\n", TASK_ARG(arg)); - return NULL; + taskExit(arg, NULL); } void *alarmz(sched_task_t *arg) { printf("Alarm %ld sec::\n", (u_long) TASK_ARG(arg)); - return NULL; + taskExit(arg, NULL); } void *node(sched_task_t *arg) { - printf("Node %s fflags 0x%X\n", (char*) TASK_ARG(arg), (u_int) TASK_DATLEN(arg)); - return NULL; + printf("Node %s data %d fflags 0x%X\n", (char*) TASK_ARG(arg), TASK_RET(arg), TASK_FLAG(arg)); + taskExit(arg, NULL); } void *proc(sched_task_t *arg) { - printf("Proc pid=%ld fflags 0x%X data %p\n", TASK_VAL(arg), (u_int) TASK_DATLEN(arg), - TASK_DATA(arg)); - return NULL; + printf("Proc pid=%ld data %d fflags 0x%X\n", TASK_VAL(arg), TASK_RET(arg), TASK_FLAG(arg)); + taskExit(arg, NULL); } void *sigz(sched_task_t *arg) { - printf("Signal signal=%ld\n", TASK_VAL(arg)); - return NULL; + printf("Signal signal=%ld how many times %d\n", TASK_VAL(arg), TASK_RET(arg)); + taskExit(arg, NULL); } #ifdef EVFILT_USER void *user(sched_task_t *arg) { - printf("User trigger id %ld fflags %d\n", TASK_VAL(arg), TASK_DATLEN(arg) & NOTE_FFLAGSMASK); - return NULL; + printf("User trigger id %ld fflags %d\n", TASK_VAL(arg), TASK_FLAG(arg) & NOTE_FFLAGSMASK); + taskExit(arg, NULL); } #endif +void *susp1(sched_task_t *arg) +{ + printf("Suspend 1 =%ld\n", TASK_VAL(arg)); + taskExit(arg, NULL); +} +void *susp2(sched_task_t *arg) +{ + printf("Suspend 2 =%ld\n", TASK_VAL(arg)); + taskExit(arg, NULL); +} +void *susp3(sched_task_t *arg) +{ + printf("Suspend 3 =%ld\n", TASK_VAL(arg)); + taskExit(arg, NULL); +} + void *once(sched_task_t *arg) { printf("once::\n"); - return NULL; + taskExit(arg, NULL); } void sig(int s) @@ -76,6 +93,8 @@ void sig(int s) Kill++; break; case SIGUSR1: + schedResumeby(root, CRITERIA_ID, (void*) 0); + schedResumeby(root, CRITERIA_ID, (void*) 7); break; } } @@ -83,7 +102,6 @@ void sig(int s) int main(int argc, char **argv) { - sched_root_task_t *root; struct timespec ts = { 20, 0 }; // struct timespec p = { 0, 10000000 }; int f = 0; @@ -91,6 +109,7 @@ main(int argc, char **argv) #ifdef EVFILT_USER sched_task_t *t[4]; #endif + sched_task_t *task; sa.sa_handler = sig; sigemptyset(&sa.sa_mask); @@ -119,10 +138,22 @@ main(int argc, char **argv) return 2; } - if (!schedEventLo(root, eventlo, "piuk", 1111, NULL, 0)) { + if (!schedTask(root, regular, "piuk", 11, NULL, 0)) { printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); return 3; } + if (!schedTask(root, regular, "piuk", 1, NULL, 0)) { + printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); + return 3; + } + if (!schedTask(root, regular, "piuk", 0, NULL, 0)) { + printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); + return 3; + } + if (!schedTask(root, regular, "piuk", 1000001, NULL, 0)) { + printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); + return 3; + } if (!schedTimer(root, timer, (void*) (intptr_t) ts.tv_sec, ts, NULL, 0)) { printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); @@ -171,6 +202,18 @@ main(int argc, char **argv) return 6; } #endif + if (!schedSuspend(root, susp1, NULL, 7, NULL, 0)) { + printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); + return 6; + } + if (!(task = schedSuspend(root, susp2, NULL, 1, NULL, 0))) { + printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); + return 6; + } + if (!schedSuspend(root, susp3, NULL, 0, NULL, 0)) { + printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); + return 6; + } if (argc > 1) if (!schedProc(root, proc, NULL, atoi(argv[1]), 0, 0)) { @@ -194,6 +237,7 @@ main(int argc, char **argv) schedTrigger(t[3]); schedTrigger(t[1]); #endif + schedResumeby(root, CRITERIA_DATA, task); if (!schedSignal(root, sigz, NULL, SIGUSR1, 0, 0)) { printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError());