1 /* Copyright (C) 2001-2015 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@redhat.com>, 2001.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
27 void (*func
) (sigval_t
);
32 notify_func_wrapper (void *arg
)
34 gai_start_notify_thread ();
35 struct notify_func
*const n
= arg
;
36 void (*func
) (sigval_t
) = n
->func
;
37 sigval_t value
= n
->value
;
46 __gai_notify_only (struct sigevent
*sigev
, pid_t caller_pid
)
50 /* Send the signal to notify about finished processing of the request. */
51 if (sigev
->sigev_notify
== SIGEV_THREAD
)
53 /* We have to start a thread. */
55 pthread_attr_t attr
, *pattr
;
57 pattr
= (pthread_attr_t
*) sigev
->sigev_notify_attributes
;
60 pthread_attr_init (&attr
);
61 pthread_attr_setdetachstate (&attr
, PTHREAD_CREATE_DETACHED
);
65 /* SIGEV may be freed as soon as we return, so we cannot let the
66 notification thread use that pointer. Even though a sigval_t is
67 only one word and the same size as a void *, we cannot just pass
68 the value through pthread_create as the argument and have the new
69 thread run the user's function directly, because on some machines
70 the calling convention for a union like sigval_t is different from
71 that for a pointer type like void *. */
72 struct notify_func
*nf
= malloc (sizeof *nf
);
77 nf
->func
= sigev
->sigev_notify_function
;
78 nf
->value
= sigev
->sigev_value
;
79 if (pthread_create (&tid
, pattr
, notify_func_wrapper
, nf
) < 0)
86 else if (sigev
->sigev_notify
== SIGEV_SIGNAL
)
87 /* We have to send a signal. */
88 if (__gai_sigqueue (sigev
->sigev_signo
, sigev
->sigev_value
, caller_pid
)
98 __gai_notify (struct requestlist
*req
)
100 struct waitlist
*waitlist
;
102 /* Now also notify possibly waiting threads. */
103 waitlist
= req
->waiting
;
104 while (waitlist
!= NULL
)
106 struct waitlist
*next
= waitlist
->next
;
108 if (waitlist
->sigevp
== NULL
)
110 #ifdef DONT_NEED_GAI_MISC_COND
111 GAI_MISC_NOTIFY (waitlist
);
113 /* Decrement the counter. */
114 --*waitlist
->counterp
;
116 pthread_cond_signal (waitlist
->cond
);
120 /* This is part of an asynchronous `getaddrinfo_a' operation. If
121 this request is the last one, send the signal. */
122 if (--*waitlist
->counterp
== 0)
124 __gai_notify_only (waitlist
->sigevp
, waitlist
->caller_pid
);
125 /* This is tricky. See getaddrinfo_a.c for the reason why
127 free ((void *) waitlist
->counterp
);