]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - rt/tst-aio5.c
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / rt / tst-aio5.c
index 307550e4f3ed2d5fc315d1f426988140ebb44376..29b06313c95c611a4b170ffdd6023463b1a0632b 100644 (file)
@@ -1,30 +1,27 @@
 /* Test for completion thread handling.
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright (C) 2000-2019 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
-   modify it under the terms of the GNU Library General Public License as
-   published by the Free Software Foundation; either version 2 of the
-   License, or (at your option) any later version.
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
 
    The GNU C Library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-   Library General Public License for more details.
+   Lesser General Public License for more details.
 
-   You should have received a copy of the GNU Library General Public
-   License along with the GNU C Library; see the file COPYING.LIB.  If not,
-   write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-   Boston, MA 02111-1307, USA.  */
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
 
 #include <aio.h>
 #include <signal.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <unistd.h>
-
-/* We might need a bit longer timeout.  */
-#define TIMEOUT 10 /* sec */
+#include <errno.h>
 
 #define MY_SIVAL 27
 
@@ -82,6 +79,7 @@ do_test (int argc, char *argv[])
   cb.aio_reqprio = 0;
   cb.aio_buf = (void *) buf;
   cb.aio_nbytes = sizeof (buf) - 1;
+  cb.aio_offset = 0;
   cb.aio_sigevent.sigev_notify = SIGEV_THREAD;
   cb.aio_sigevent.sigev_notify_function = callback;
   cb.aio_sigevent.sigev_notify_attributes = NULL;
@@ -95,6 +93,11 @@ do_test (int argc, char *argv[])
   /* First use aio_write.  */
   if (aio_write (arr[0]) < 0)
     {
+      if (errno == ENOSYS)
+       {
+         puts ("no aio support in this configuration");
+         return 0;
+       }
       printf ("aio_write failed: %m\n");
       return 1;
     }