diff options
Diffstat (limited to 'rt/aio_read.c')
-rw-r--r-- | rt/aio_read.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/rt/aio_read.c b/rt/aio_read.c index 871ce99767..4b5d404190 100644 --- a/rt/aio_read.c +++ b/rt/aio_read.c @@ -1,5 +1,5 @@ /* Asynchronous read. - Copyright (C) 1997 Free Software Foundation, Inc. + Copyright (C) 1997, 1999 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. @@ -27,5 +27,6 @@ int aio_read (aiocbp) struct aiocb *aiocbp; { - return __aio_enqueue_request ((aiocb_union *) aiocbp, LIO_READ) != NULL; + return (__aio_enqueue_request ((aiocb_union *) aiocbp, LIO_READ) == NULL + ? -1 : 0); } |