|
|
| version 1.8.2.1, 2012/08/21 13:01:58 | version 1.8.2.2, 2012/08/23 02:17:48 |
|---|---|
| Line 86 void *once(sched_task_t *arg) | Line 86 void *once(sched_task_t *arg) |
| taskExit(arg, NULL); | taskExit(arg, NULL); |
| } | } |
| void *thr(sched_task_t *arg) | |
| { | |
| printf("tid (%lx):: %s\n", TASK_VAL(arg), __func__); | |
| printf("tid (%lu):: %s\n", TASK_VAL(arg), (char*) TASK_ARG(arg)); | |
| taskExit(arg, 42); | |
| } | |
| void *thr4kill(sched_task_t *arg) | |
| { | |
| char blah[BUFSIZ]; | |
| printf("tid (%lx):: %s\n", TASK_VAL(arg), __func__); | |
| read(0, blah, sizeof blah); | |
| printf("never see!!! (%lx):: %s (%d == %d)\n", TASK_VAL(arg), (char*) TASK_ARG(arg), TASK_TYPE(arg), taskTHREAD); | |
| taskExit(arg, 0); | |
| } | |
| void sig(int s) | void sig(int s) |
| { | { |
| switch (s) { | switch (s) { |
| Line 106 main(int argc, char **argv) | Line 124 main(int argc, char **argv) |
| // struct timespec p = { 0, 10000000 }; | // struct timespec p = { 0, 10000000 }; |
| int f = 0; | int f = 0; |
| struct sigaction sa; | struct sigaction sa; |
| sched_task_t *t; | |
| #ifdef EVFILT_USER | #ifdef EVFILT_USER |
| sched_task_t *t[4]; | sched_task_t *tt[4]; |
| #endif | #endif |
| sched_task_t *task; | sched_task_t *task; |
| Line 185 main(int argc, char **argv) | Line 204 main(int argc, char **argv) |
| } | } |
| #ifdef EVFILT_USER | #ifdef EVFILT_USER |
| if (!(t[0] = schedUser(root, user, NULL, 42, 0, 0))) { | if (!(tt[0] = schedUser(root, user, NULL, 42, 0, 0))) { |
| printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); | printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); |
| return 6; | return 6; |
| } | } |
| if (!(t[1] = schedUser(root, user, NULL, 1, 0, 73))) { | if (!(tt[1] = schedUser(root, user, NULL, 1, 0, 73))) { |
| printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); | printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); |
| return 6; | return 6; |
| } | } |
| if (!(t[2] = schedUser(root, user, NULL, 0xaa, 0, NOTE_FFAND | 0xaa))) { | if (!(tt[2] = schedUser(root, user, NULL, 0xaa, 0, NOTE_FFAND | 0xaa))) { |
| printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); | printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); |
| return 6; | return 6; |
| } | } |
| if (!(t[3] = schedUser(root, user, NULL, -1, 0, NOTE_FFCOPY | 1003))) { | if (!(tt[3] = schedUser(root, user, NULL, -1, 0, NOTE_FFCOPY | 1003))) { |
| printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); | printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); |
| return 6; | return 6; |
| } | } |
| Line 215 main(int argc, char **argv) | Line 234 main(int argc, char **argv) |
| return 6; | return 6; |
| } | } |
| 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, NULL, 0)) { | |
| printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); | |
| return 7; | |
| } | |
| if (!schedThread(root, thr, "mdaaaa this is thread task -detached", 42, NULL, 0)) { | |
| printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); | |
| return 7; | |
| } | |
| if (!schedThread(root, thr, "mdaaaa this is thread task -j", 0, 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, NULL, 0)) { | |
| printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); | |
| return 7; | |
| } | |
| if (!(t = schedThread(root, thr4kill, "0aaaa", 42, NULL, 0))) { | |
| printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); | |
| return 7; | |
| } | |
| if (!schedThread(root, thr, "mdaaaa this is thread task -j3", 0, NULL, 0)) { | |
| printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); | |
| return 7; | |
| } | |
| sleep(1); | |
| schedCancel(t); | |
| if (argc > 1) | if (argc > 1) |
| if (!schedProc(root, proc, NULL, atoi(argv[1]), 0, 0)) { | if (!schedProc(root, proc, NULL, atoi(argv[1]), 0, 0)) { |
| printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); | printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); |
| Line 234 main(int argc, char **argv) | Line 286 main(int argc, char **argv) |
| } | } |
| #ifdef EVFILT_USER | #ifdef EVFILT_USER |
| schedTrigger(t[3]); | schedTrigger(tt[3]); |
| schedTrigger(t[1]); | schedTrigger(tt[1]); |
| #endif | #endif |
| schedResumeby(root, CRITERIA_DATA, task); | schedResumeby(root, CRITERIA_DATA, task); |
| Line 246 main(int argc, char **argv) | Line 298 main(int argc, char **argv) |
| } | } |
| #ifdef EVFILT_USER | #ifdef EVFILT_USER |
| schedTrigger(t[2]); | schedTrigger(tt[2]); |
| schedTrigger(t[0]); | schedTrigger(tt[0]); |
| #endif | #endif |
| schedCallOnce(root, once, "000000", 42, NULL, 0); | schedCallOnce(root, once, "000000", 42, NULL, 0); |