--- libaitsched/example/test.c 2012/08/02 13:56:19 1.7 +++ libaitsched/example/test.c 2012/08/08 08:25:39 1.8 @@ -22,9 +22,9 @@ 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"); return NULL; } @@ -179,7 +179,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; }