--- libaitsched/example/test_time.c 2012/07/24 14:06:10 1.5 +++ libaitsched/example/test_time.c 2012/08/08 08:24:51 1.5.4.1 @@ -19,9 +19,10 @@ void *event(sched_task_t *arg) return NULL; } -void *eventlo(sched_task_t *arg) +void *regular(sched_task_t *arg) { - printf("EventLOW::\n"); + printf("Task::\n"); + fflush(stdout); return NULL; } @@ -138,7 +139,7 @@ main(int argc, char **argv) return 2; } - if (!schedEventLo(root, eventlo, "piuk", 1111, NULL, 0)) { + if (!schedTask(root, regular, "piuk", 1111, NULL, 0)) { printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); return 3; }