--- libaitsched/example/test.c 2012/08/21 11:45:34 1.8.4.1 +++ libaitsched/example/test.c 2012/08/21 12:54:39 1.9 @@ -36,14 +36,14 @@ void *timer(sched_task_t *arg) void *r(sched_task_t *arg) { - printf("read:: bytes\n"); + printf("read:: %d bytes wait\n", TASK_RET(arg)); Kill++; return NULL; } void *w(sched_task_t *arg) { - printf("write::\n"); + printf("write:: %d bytes wait\n", TASK_RET(arg)); return NULL; }