|
|
| version 1.14.2.2, 2012/08/22 13:37:23 | version 1.15, 2012/08/23 02:33:12 |
|---|---|
| Line 110 sched_hook_cancel(void *task, void *arg __unused) | Line 110 sched_hook_cancel(void *task, void *arg __unused) |
| #ifdef AIO_SUPPORT | #ifdef AIO_SUPPORT |
| struct aiocb *acb; | struct aiocb *acb; |
| #ifdef EVFILT_LIO | #ifdef EVFILT_LIO |
| register int i = 0; | |
| struct aiocb **acbs; | struct aiocb **acbs; |
| register int i; | |
| #endif /* EVFILT_LIO */ | #endif /* EVFILT_LIO */ |
| #endif /* AIO_SUPPORT */ | #endif /* AIO_SUPPORT */ |
| Line 210 sched_hook_cancel(void *task, void *arg __unused) | Line 210 sched_hook_cancel(void *task, void *arg __unused) |
| case taskTHREAD: | case taskTHREAD: |
| #ifdef HAVE_LIBPTHREAD | #ifdef HAVE_LIBPTHREAD |
| pthread_cancel((pthread_t) TASK_VAL(t)); | pthread_cancel((pthread_t) TASK_VAL(t)); |
| if (TASK_FLAG(t) == PTHREAD_CREATE_JOINABLE) /* joinable thread */ | |
| schedTask(TASK_ROOT(t), _sched_threadJoin, TASK_ARG(t), | |
| TASK_VAL(t), TASK_DATA(t), TASK_DATLEN(t)); | |
| #endif | #endif |
| TASK_UNLOCK(t); | |
| default: | default: |
| return NULL; | return NULL; |
| } | } |
| Line 236 sched_hook_thread(void *task, void *arg) | Line 232 sched_hook_thread(void *task, void *arg) |
| { | { |
| sched_task_t *t = task; | sched_task_t *t = task; |
| pthread_t tid; | pthread_t tid; |
| sigset_t ns, os; | sigset_t s, o; |
| if (!t || !TASK_ROOT(t)) | if (!t || !TASK_ROOT(t)) |
| return (void*) -1; | return (void*) -1; |
| sigfillset(&ns); | sigfillset(&s); |
| pthread_sigmask(SIG_BLOCK, &ns, &os); | pthread_sigmask(SIG_BLOCK, &s, &o); |
| if (pthread_create(&tid, (pthread_attr_t*) arg, | if (pthread_create(&tid, (pthread_attr_t*) arg, |
| (void *(*)(void*)) TASK_FUNC(t), t)) { | (void *(*)(void*)) _sched_threadWrapper, t)) { |
| LOGERR; | LOGERR; |
| pthread_sigmask(SIG_SETMASK, &os, NULL); | pthread_sigmask(SIG_SETMASK, &o, NULL); |
| return (void*) -1; | return (void*) -1; |
| } | } else |
| pthread_sigmask(SIG_SETMASK, &os, NULL); | TASK_VAL(t) = (u_long) tid; |
| if (!TASK_ISLOCKED(t)) | if (!TASK_ISLOCKED(t)) |
| TASK_LOCK(t); | TASK_LOCK(t); |
| TASK_VAL(t) = (u_long) tid; | pthread_sigmask(SIG_SETMASK, &o, NULL); |
| return NULL; | return NULL; |
| } | } |
| #endif | #endif |