* sysdeps/powerpc/powerpc32/sysdep.h (ENTRY, EALIGN): Add cfi_startproc
[glibc.git] / sysdeps / pthread / aio_suspend.c
blob9e3a1ee46ec0759c5ca892c27b2f30a94cfe56fd
1 /* Suspend until termination of a requests.
2 Copyright (C) 1997-2000,2002,2003,2005,2006 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA. */
22 /* We use an UGLY hack to prevent gcc from finding us cheating. The
23 implementations of aio_suspend and aio_suspend64 are identical and so
24 we want to avoid code duplication by using aliases. But gcc sees
25 the different parameter lists and prints a warning. We define here
26 a function so that aio_suspend64 has no prototype. */
27 #define aio_suspend64 XXX
28 #include <aio.h>
29 /* And undo the hack. */
30 #undef aio_suspend64
32 #include <assert.h>
33 #include <errno.h>
34 #include <stdbool.h>
35 #include <stdlib.h>
36 #include <sys/time.h>
38 #include <bits/libc-lock.h>
39 #include <aio_misc.h>
42 struct clparam
44 const struct aiocb *const *list;
45 struct waitlist *waitlist;
46 struct requestlist **requestlist;
47 pthread_cond_t *cond;
48 int nent;
52 static void
53 cleanup (void *arg)
55 const struct clparam *param = (const struct clparam *) arg;
57 /* Now remove the entry in the waiting list for all requests
58 which didn't terminate. */
59 int cnt = param->nent;
60 while (cnt-- > 0)
61 if (param->list[cnt] != NULL
62 && param->list[cnt]->__error_code == EINPROGRESS)
64 struct waitlist **listp;
66 assert (param->requestlist[cnt] != NULL);
68 /* There is the chance that we cannot find our entry anymore. This
69 could happen if the request terminated and restarted again. */
70 listp = &param->requestlist[cnt]->waiting;
71 while (*listp != NULL && *listp != &param->waitlist[cnt])
72 listp = &(*listp)->next;
74 if (*listp != NULL)
75 *listp = (*listp)->next;
78 /* Release the conditional variable. */
79 (void) pthread_cond_destroy (param->cond);
81 /* Release the mutex. */
82 pthread_mutex_unlock (&__aio_requests_mutex);
86 int
87 aio_suspend (list, nent, timeout)
88 const struct aiocb *const list[];
89 int nent;
90 const struct timespec *timeout;
92 struct waitlist waitlist[nent];
93 struct requestlist *requestlist[nent];
94 pthread_cond_t cond = PTHREAD_COND_INITIALIZER;
95 int cnt;
96 bool any = false;
97 int result = 0;
98 int dummy;
100 /* Request the mutex. */
101 pthread_mutex_lock (&__aio_requests_mutex);
103 /* There is not yet a finished request. Signal the request that
104 we are working for it. */
105 for (cnt = 0; cnt < nent; ++cnt)
106 if (list[cnt] != NULL)
108 if (list[cnt]->__error_code == EINPROGRESS)
110 requestlist[cnt] = __aio_find_req ((aiocb_union *) list[cnt]);
112 if (requestlist[cnt] != NULL)
114 waitlist[cnt].cond = &cond;
115 waitlist[cnt].result = NULL;
116 waitlist[cnt].next = requestlist[cnt]->waiting;
117 waitlist[cnt].counterp = &dummy;
118 waitlist[cnt].sigevp = NULL;
119 #ifdef BROKEN_THREAD_SIGNALS
120 waitlist[cnt].caller_pid = 0; /* Not needed. */
121 #endif
122 requestlist[cnt]->waiting = &waitlist[cnt];
123 any = true;
125 else
126 /* We will never suspend. */
127 break;
129 else
130 /* We will never suspend. */
131 break;
135 /* Only if none of the entries is NULL or finished to be wait. */
136 if (cnt == nent && any)
138 struct clparam clparam =
140 .list = list,
141 .waitlist = waitlist,
142 .requestlist = requestlist,
143 .cond = &cond,
144 .nent = nent
147 pthread_cleanup_push (cleanup, &clparam);
149 if (timeout == NULL)
150 result = pthread_cond_wait (&cond, &__aio_requests_mutex);
151 else
153 /* We have to convert the relative timeout value into an
154 absolute time value with pthread_cond_timedwait expects. */
155 struct timeval now;
156 struct timespec abstime;
158 __gettimeofday (&now, NULL);
159 abstime.tv_nsec = timeout->tv_nsec + now.tv_usec * 1000;
160 abstime.tv_sec = timeout->tv_sec + now.tv_sec;
161 if (abstime.tv_nsec >= 1000000000)
163 abstime.tv_nsec -= 1000000000;
164 abstime.tv_sec += 1;
167 result = pthread_cond_timedwait (&cond, &__aio_requests_mutex,
168 &abstime);
171 pthread_cleanup_pop (0);
174 /* Now remove the entry in the waiting list for all requests
175 which didn't terminate. */
176 while (cnt-- > 0)
177 if (list[cnt] != NULL && list[cnt]->__error_code == EINPROGRESS)
179 struct waitlist **listp;
181 assert (requestlist[cnt] != NULL);
183 /* There is the chance that we cannot find our entry anymore. This
184 could happen if the request terminated and restarted again. */
185 listp = &requestlist[cnt]->waiting;
186 while (*listp != NULL && *listp != &waitlist[cnt])
187 listp = &(*listp)->next;
189 if (*listp != NULL)
190 *listp = (*listp)->next;
193 /* Release the conditional variable. */
194 if (__builtin_expect (pthread_cond_destroy (&cond) != 0, 0))
195 /* This must never happen. */
196 abort ();
198 if (result != 0)
200 /* An error occurred. Possibly it's EINTR. We have to translate
201 the timeout error report of `pthread_cond_timedwait' to the
202 form expected from `aio_suspend'. */
203 if (result == ETIMEDOUT)
204 __set_errno (EAGAIN);
205 else
206 __set_errno (result);
208 result = -1;
211 /* Release the mutex. */
212 pthread_mutex_unlock (&__aio_requests_mutex);
214 return result;
217 weak_alias (aio_suspend, aio_suspend64)