* sysdeps/pthread/aio_misc.h (LIO_DSYNC): Define to LIO_NOP + 1,
authorRoland McGrath <roland@gnu.org>
Mon, 18 Jun 2001 01:47:39 +0000 (01:47 +0000)
committerRoland McGrath <roland@gnu.org>
Mon, 18 Jun 2001 01:47:39 +0000 (01:47 +0000)
not LIO_READ + 1 (which is the value of LIO_WRITE!).

ChangeLog
sysdeps/pthread/aio_misc.h

index 9b8775c..c52aa8a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2001-06-17  Roland McGrath  <roland@frob.com>
 
+       * sysdeps/pthread/aio_misc.h (LIO_DSYNC): Define to LIO_NOP + 1,
+       not LIO_READ + 1 (which is the value of LIO_WRITE!).
+
        * sysdeps/unix/sysv/linux/i386/sigaction.c (restore, restore_rt):
        Declare these without `static', to avoid warning that we haven't
        defined them.
index 372b555..748eb1b 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1997, 1999, 2000 Free Software Foundation, Inc.
+/* Copyright (C) 1997,99,2000,01 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -26,7 +26,7 @@
 /* Extend the operation enum.  */
 enum
 {
-  LIO_DSYNC = LIO_READ + 1,
+  LIO_DSYNC = LIO_NOP + 1,
   LIO_SYNC,
   LIO_READ64 = LIO_READ | 128,
   LIO_WRITE64 = LIO_WRITE | 128