1 /* Enqueue and list of read or write 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 Library General Public License as
8 published by the Free Software Foundation; either version 2 of the
9 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 Library General Public License for more details.
16 You should have received a copy of the GNU Library General Public
17 License along with the GNU C Library; see the file COPYING.LIB. If not,
18 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
29 /* We need this special structure to handle asynchronous I/O. */
33 struct sigevent sigev
;
34 struct waitlist list
[0];
39 lio_listio (mode
, list
, nent
, sig
)
41 struct aiocb
*const list
[];
45 struct sigevent defsigev
;
46 struct requestlist
*requests
[nent
];
48 volatile int total
= 0;
51 /* Check arguments. */
52 if (mode
!= LIO_WAIT
&& mode
!= LIO_NOWAIT
)
60 defsigev
.sigev_notify
= SIGEV_NONE
;
64 /* Request the mutex. */
65 pthread_mutex_lock (&__aio_requests_mutex
);
67 /* Now we can enqueue all requests. Since we already acquired the
68 mutex the enqueue function need not do this. */
69 for (cnt
= 0; cnt
< nent
; ++cnt
)
70 if (list
[cnt
] != NULL
&& list
[cnt
]->aio_lio_opcode
!= LIO_NOP
)
72 list
[cnt
]->aio_sigevent
.sigev_notify
= SIGEV_NONE
;
73 requests
[cnt
] = __aio_enqueue_request ((aiocb_union
*) list
[cnt
],
74 list
[cnt
]->aio_lio_opcode
);
76 if (requests
[cnt
] != NULL
)
77 /* Successfully enqueued. */
80 /* Signal that we've seen an error. `errno' and the error code
81 of the aiocb will tell more. */
87 /* We don't have anything to do except signalling if we work
90 /* Release the mutex. We do this before raising a signal since the
91 signal handler might do a `siglongjmp' and then the mutex is
93 pthread_mutex_unlock (&__aio_requests_mutex
);
95 if (mode
== LIO_NOWAIT
)
96 __aio_notify_only (sig
,
97 sig
->sigev_notify
== SIGEV_SIGNAL
? getpid () : 0);
101 else if (mode
== LIO_WAIT
)
103 pthread_cond_t cond
= PTHREAD_COND_INITIALIZER
;
104 struct waitlist waitlist
[nent
];
108 for (cnt
= 0; cnt
< nent
; ++cnt
)
109 if (list
[cnt
] != NULL
&& list
[cnt
]->aio_lio_opcode
!= LIO_NOP
110 && requests
[cnt
] != NULL
)
112 waitlist
[cnt
].cond
= &cond
;
113 waitlist
[cnt
].next
= requests
[cnt
]->waiting
;
114 waitlist
[cnt
].counterp
= &total
;
115 waitlist
[cnt
].sigevp
= NULL
;
116 waitlist
[cnt
].caller_pid
= 0; /* Not needed. */
117 requests
[cnt
]->waiting
= &waitlist
[cnt
];
121 /* Since `pthread_cond_wait'/`pthread_cond_timedwait' are cancelation
122 points we must be careful. We added entries to the waiting lists
123 which we must remove. So defer cancelation for now. */
124 pthread_setcancelstate (PTHREAD_CANCEL_DISABLE
, &oldstate
);
127 pthread_cond_wait (&cond
, &__aio_requests_mutex
);
129 /* Now it's time to restore the cancelation state. */
130 pthread_setcancelstate (oldstate
, NULL
);
132 /* Release the conditional variable. */
133 if (pthread_cond_destroy (&cond
) != 0)
134 /* This must never happen. */
139 struct async_waitlist
*waitlist
;
141 waitlist
= (struct async_waitlist
*)
142 malloc (sizeof (struct async_waitlist
)
143 + (nent
* sizeof (struct waitlist
)));
145 if (waitlist
== NULL
)
147 __set_errno (EAGAIN
);
152 pid_t caller_pid
= sig
->sigev_notify
== SIGEV_SIGNAL
? getpid () : 0;
155 for (cnt
= 0; cnt
< nent
; ++cnt
)
156 if (list
[cnt
] != NULL
&& list
[cnt
]->aio_lio_opcode
!= LIO_NOP
157 && requests
[cnt
] != NULL
)
159 waitlist
->list
[cnt
].cond
= NULL
;
160 waitlist
->list
[cnt
].next
= requests
[cnt
]->waiting
;
161 waitlist
->list
[cnt
].counterp
= &waitlist
->counter
;
162 waitlist
->list
[cnt
].sigevp
= &waitlist
->sigev
;
163 waitlist
->list
[cnt
].caller_pid
= caller_pid
;
164 requests
[cnt
]->waiting
= &waitlist
->list
[cnt
];
168 waitlist
->counter
= total
;
169 waitlist
->sigev
= *sig
;
173 /* Release the mutex. */
174 pthread_mutex_unlock (&__aio_requests_mutex
);