|
|
| version 1.11, 2013/08/15 19:10:48 | version 1.11.8.1, 2013/08/26 18:45:42 |
|---|---|
| Line 268 main(int argc, char **argv) | Line 268 main(int argc, char **argv) |
| return 6; | return 6; |
| } | } |
| 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()); | printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); |
| return 7; | 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()); | printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); |
| return 7; | 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()); | printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); |
| return 7; | 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()); | printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); |
| return 7; | return 7; |
| } | } |
| printf("try to cancel tid = %lx\n", TASK_VAL(t)); | printf("try to cancel tid = %lx\n", TASK_VAL(t)); |
| schedCancel(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()); | printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); |
| return 7; | 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()); | printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); |
| return 7; | 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()); | printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); |
| return 7; | return 7; |
| } | } |