|
|
| version 1.3.2.3, 2012/05/31 21:51:28 | version 1.3.2.4, 2012/05/31 21:56:27 |
|---|---|
| Line 26 void *eventlo(sched_task_t *arg) | Line 26 void *eventlo(sched_task_t *arg) |
| void *timer(sched_task_t *arg) | void *timer(sched_task_t *arg) |
| { | { |
| printf("Timer %d sec::\n", (int) TASK_ARG(arg)); | printf("Timer %p sec::\n", TASK_ARG(arg)); |
| return NULL; | return NULL; |
| } | } |
| Line 38 void *alarmz(sched_task_t *arg) | Line 38 void *alarmz(sched_task_t *arg) |
| void *node(sched_task_t *arg) | void *node(sched_task_t *arg) |
| { | { |
| printf("Node %s fflags 0x%X\n", (char*) TASK_ARG(arg), TASK_DATLEN(arg)); | printf("Node %s fflags 0x%X\n", (char*) TASK_ARG(arg), (u_int) TASK_DATLEN(arg)); |
| return NULL; | return NULL; |
| } | } |
| void *proc(sched_task_t *arg) | void *proc(sched_task_t *arg) |
| { | { |
| printf("Proc pid=%ld fflags 0x%X data %x\n", TASK_VAL(arg), TASK_DATLEN(arg), | printf("Proc pid=%ld fflags 0x%X data %p\n", TASK_VAL(arg), (u_int) TASK_DATLEN(arg), |
| (uintptr_t) TASK_DATA(arg)); | TASK_DATA(arg)); |
| return NULL; | return NULL; |
| } | } |
| Line 55 void *sigz(sched_task_t *arg) | Line 55 void *sigz(sched_task_t *arg) |
| return NULL; | return NULL; |
| } | } |
| #ifdef EVFILT_USER | |
| void *user(sched_task_t *arg) | void *user(sched_task_t *arg) |
| { | { |
| printf("User trigger id %ld fflags %d\n", TASK_VAL(arg), TASK_DATLEN(arg) & NOTE_FFLAGSMASK); | printf("User trigger id %ld fflags %d\n", TASK_VAL(arg), TASK_DATLEN(arg) & NOTE_FFLAGSMASK); |
| return NULL; | return NULL; |
| } | } |
| #endif | |
| void *once(sched_task_t *arg) | void *once(sched_task_t *arg) |
| { | { |
| Line 188 main(int argc, char **argv) | Line 190 main(int argc, char **argv) |
| } | } |
| } | } |
| #ifdef EVFILT_USER | |
| schedTrigger(t[3]); | schedTrigger(t[3]); |
| schedTrigger(t[1]); | schedTrigger(t[1]); |
| #endif | |
| if (!schedSignal(root, sigz, NULL, SIGUSR1, 0, 0)) { | if (!schedSignal(root, sigz, NULL, SIGUSR1, 0, 0)) { |
| printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); | printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); |
| Line 197 main(int argc, char **argv) | Line 201 main(int argc, char **argv) |
| return 9; | return 9; |
| } | } |
| #ifdef EVFILT_USER | |
| schedTrigger(t[2]); | schedTrigger(t[2]); |
| schedTrigger(t[0]); | schedTrigger(t[0]); |
| #endif | |
| schedCallOnce(root, once, "000000", 42, NULL, 0); | schedCallOnce(root, once, "000000", 42, NULL, 0); |