--- libaitsched/example/test_brut.c 2013/08/26 18:42:32 1.1.2.3 +++ libaitsched/example/test_brut.c 2013/08/26 18:53:09 1.1.2.5 @@ -124,7 +124,8 @@ void *thr4kill(sched_task_t *arg) read(0, blah, sizeof blah); if (arg) printf("never see!!! (%lx):: %s (%d == %d)\n", arg ? TASK_VAL(arg) : 0, - (char*) arg ? TASK_ARG(arg) : NULL, arg ? TASK_TYPE(arg) : -1, taskTHREAD); + arg ? (char*) TASK_ARG(arg) : NULL, + arg ? TASK_TYPE(arg) : -1, taskTHREAD); taskExit(arg, 0); } @@ -294,43 +295,41 @@ main(int argc, char **argv) return 6; } - if (!schedThread(root, thrinf, "OHOBOHO_i_BOZA", 0, 0, NULL, 0)) { + if (!schedThread(root, thrinf, "OHOBOHO_i_BOZA", 0, NULL, 0)) { printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); return 7; } - /* - if (!schedThread(root, thrinf, "OHOBOHO_i_BOZA+detach", 42, 0, NULL, 0)) { + if (!schedThread(root, thrinf, "OHOBOHO_i_BOZA+1", 0, NULL, 0)) { printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); return 7; } - */ - 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)) { + 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; }