aboutsummaryrefslogtreecommitdiff
path: root/rt/lio_listio.c
diff options
context:
space:
mode:
Diffstat (limited to 'rt/lio_listio.c')
-rw-r--r--rt/lio_listio.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/rt/lio_listio.c b/rt/lio_listio.c
index b389c6a..07c8d3e 100644
--- a/rt/lio_listio.c
+++ b/rt/lio_listio.c
@@ -1,5 +1,5 @@
/* Enqueue and list of read or write requests.
- Copyright (C) 1997 Free Software Foundation, Inc.
+ Copyright (C) 1997, 1998 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
@@ -86,6 +86,9 @@ lio_listio (mode, list, nent, sig)
struct waitlist waitlist[nent];
int oldstate;
+ /* Initialize the conditional variable. */
+ pthread_cond_init (&cond, NULL);
+
total = 0;
for (cnt = 0; cnt < nent; ++cnt)
if (list[cnt] != NULL && list[cnt]->aio_lio_opcode != LIO_NOP
@@ -110,6 +113,11 @@ lio_listio (mode, list, nent, sig)
/* Now it's time to restore the cancelation state. */
pthread_setcancelstate (oldstate, NULL);
+
+ /* Release the conditional variable. */
+ if (pthread_cond_destroy (&cond) != 0)
+ /* This must never happen. */
+ abort ();
}
else
{