int internal_function __gai_notify_only (struct sigevent *sigev, pid_t caller_pid) { int result = 0; /* Send the signal to notify about finished processing of the request. */ if (sigev->sigev_notify == SIGEV_THREAD) { /* We have to start a thread. */ pthread_t tid; pthread_attr_t attr, *pattr; pattr = (pthread_attr_t *) sigev->sigev_notify_attributes; if (pattr == NULL) { pthread_attr_init (&attr); pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED); pattr = &attr; } if (pthread_create (&tid, pattr, notify_func_wrapper, sigev) < 0) result = -1; } else if (sigev->sigev_notify == SIGEV_SIGNAL) /* We have to send a signal. */ if (__gai_sigqueue (sigev->sigev_signo, sigev->sigev_value, caller_pid) < 0) result = -1; return result; }
int internal_function __gai_notify_only (struct sigevent *sigev, pid_t caller_pid) { int result = 0; /* Send the signal to notify about finished processing of the request. */ if (sigev->sigev_notify == SIGEV_THREAD) { /* We have to start a thread. */ pthread_t tid; pthread_attr_t attr, *pattr; pattr = (pthread_attr_t *) sigev->sigev_notify_attributes; if (pattr == NULL) { pthread_attr_init (&attr); pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED); pattr = &attr; } /* SIGEV may be freed as soon as we return, so we cannot let the notification thread use that pointer. Even though a sigval_t is only one word and the same size as a void *, we cannot just pass the value through pthread_create as the argument and have the new thread run the user's function directly, because on some machines the calling convention for a union like sigval_t is different from that for a pointer type like void *. */ struct notify_func *nf = malloc (sizeof *nf); if (nf == NULL) result = -1; else { nf->func = sigev->sigev_notify_function; nf->value = sigev->sigev_value; if (pthread_create (&tid, pattr, notify_func_wrapper, nf) < 0) { free (nf); result = -1; } } } else if (sigev->sigev_notify == SIGEV_SIGNAL) /* We have to send a signal. */ if (__gai_sigqueue (sigev->sigev_signo, sigev->sigev_value, caller_pid) < 0) result = -1; return result; }