1 /* Suspend until termination of a requests.
2 Copyright (C) 1997, 1998, 1999, 2000 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
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
29 /* And undo the hack. */
40 aio_suspend (list, nent, timeout)
41 const struct aiocb *const list[];
43 const struct timespec *timeout;
45 struct waitlist waitlist[nent];
46 struct requestlist *requestlist[nent];
47 pthread_cond_t cond = PTHREAD_COND_INITIALIZER;
53 /* Request the mutex. */
54 pthread_mutex_lock (&__aio_requests_mutex);
56 /* There is not yet a finished request. Signal the request that
57 we are working for it. */
58 for (cnt = 0; cnt < nent; ++cnt)
59 if (list[cnt] != NULL && list[cnt]->__error_code == EINPROGRESS)
61 requestlist[cnt] = __aio_find_req ((aiocb_union *) list[cnt]);
63 if (requestlist[cnt] != NULL)
65 waitlist[cnt].cond = &cond;
66 waitlist[cnt].next = requestlist[cnt]->waiting;
67 waitlist[cnt].counterp = &dummy;
68 waitlist[cnt].sigevp = NULL;
69 waitlist[cnt].caller_pid = 0; /* Not needed. */
70 requestlist[cnt]->waiting = &waitlist[cnt];
75 /* If there is a not finished request wait for it. */
80 /* Since `pthread_cond_wait'/`pthread_cond_timedwait' are cancelation
81 points we must be careful. We added entries to the waiting lists
82 which we must remove. So defer cancelation for now. */
83 pthread_setcancelstate (PTHREAD_CANCEL_DISABLE, &oldstate);
86 result = pthread_cond_wait (&cond, &__aio_requests_mutex);
89 /* We have to convert the relative timeout value into an
90 absolute time value with pthread_cond_timedwait expects. */
92 struct timespec abstime;
94 __gettimeofday (&now, NULL);
95 abstime.tv_nsec = timeout->tv_nsec + now.tv_usec * 1000;
96 abstime.tv_sec = timeout->tv_sec + now.tv_sec;
97 if (abstime.tv_nsec >= 1000000000)
99 abstime.tv_nsec -= 1000000000;
103 result = pthread_cond_timedwait (&cond, &__aio_requests_mutex,
107 /* Now remove the entry in the waiting list for all requests
108 which didn't terminate. */
109 for (cnt = 0; cnt < nent; ++cnt)
110 if (list[cnt] != NULL && list[cnt]->__error_code == EINPROGRESS
111 && requestlist[cnt] != NULL)
113 struct waitlist **listp = &requestlist[cnt]->waiting;
115 /* There is the chance that we cannot find our entry anymore.
116 This could happen if the request terminated and restarted
118 while (*listp != NULL && *listp != &waitlist[cnt])
119 listp = &(*listp)->next;
122 *listp = (*listp)->next;
125 /* Now it's time to restore the cancelation state. */
126 pthread_setcancelstate (oldstate, NULL);
128 /* Release the conditional variable. */
129 if (pthread_cond_destroy (&cond) != 0)
130 /* This must never happen. */
135 /* An error occurred. Possibly it's EINTR. We have to translate
136 the timeout error report of `pthread_cond_timedwait' to the
137 form expected from `aio_suspend'. */
138 if (result == ETIMEDOUT)
139 __set_errno (EAGAIN);
145 /* Release the mutex. */
146 pthread_mutex_unlock (&__aio_requests_mutex);
151 weak_alias (aio_suspend, aio_suspend64)