1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-08 17:42:12 +03:00
* rt/aio_fsync.c: Likewise.
This commit is contained in:
Ulrich Drepper
1999-08-05 00:10:40 +00:00
parent f6948bdc7c
commit d65ddb3495
6 changed files with 17 additions and 11 deletions

View File

@@ -1,5 +1,5 @@
/* Asynchronous write.
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_write (aiocbp)
struct aiocb *aiocbp;
{
return __aio_enqueue_request ((aiocb_union *) aiocbp, LIO_WRITE) != NULL;
return (__aio_enqueue_request ((aiocb_union *) aiocbp, LIO_WRITE) == NULL
? -1 : 0);
}