]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Wed, 4 Aug 1999 23:55:20 +0000 (23:55 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 4 Aug 1999 23:55:20 +0000 (23:55 +0000)
1999-08-04  Ulrich Drepper  <drepper@cygnus.com>

* rt/aio_read.c: Fix return value.
* rt/aio_read64.c: Likewise.
Reported by Christian Gafton.

* rt/aio_misc.c: Set errno at correct place.

ChangeLog
rt/aio_misc.c

index b1bf74d02689a644d3a35690d568a1f7cd240741..bf89a451ec8a8185d97051647f746b1f4eb093e9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+1999-08-04  Ulrich Drepper  <drepper@cygnus.com>
+
+       * rt/aio_read.c: Fix return value.
+       * rt/aio_read64.c: Likewise.
+       Reported by Christian Gafton.
+
+       * rt/aio_misc.c: Set errno at correct place.
+
 1999-08-04  Andreas Schwab  <schwab@suse.de>
 
        * sysdeps/unix/sysv/linux/alpha/getsysstats.c (GET_NPROCS_PARSER):
index 742a8abaf12708739436b17967a42176dc1edd6d..ba0c9d47cf35d3f7ed706fc6cf445a1fa7972893 100644 (file)
@@ -1,5 +1,5 @@
 /* Handle general operations.
-   Copyright (C) 1997, 1998 Free Software Foundation, Inc.
+   Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
 
@@ -260,8 +260,8 @@ __aio_enqueue_request (aiocb_union *aiocbp, int operation)
   newp = get_elem ();
   if (newp == NULL)
     {
-      __set_errno (EAGAIN);
       pthread_mutex_unlock (&__aio_requests_mutex);
+      __set_errno (EAGAIN);
       return NULL;
     }
   newp->aiocbp = aiocbp;