]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Sat, 11 Apr 1998 20:19:13 +0000 (20:19 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sat, 11 Apr 1998 20:19:13 +0000 (20:19 +0000)
* rt/tst-aio.c: Add test for aio_read and lio_listio.

* rt/lio_listio.c: Correct total counter handling.

* rt/aio_misc.c (handle_fildes_io): Correctly dequeue elements
from request queue.

* test-skeleton.c (main): Make stdout unbuffered.  Improve message
of signal on exit even more.

ChangeLog
rt/aio_misc.c
rt/lio_listio.c
rt/tst-aio.c
test-skeleton.c

index 9ea90402ff9e527fdf24e7d0126df6d72e8d32b5..e378892383a889b6db7e9c0bbf465faf5e76aa4c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,15 @@
 1998-04-11  Ulrich Drepper  <drepper@cygnus.com>
 
+       * rt/tst-aio.c: Add test for aio_read and lio_listio.
+
+       * rt/lio_listio.c: Correct total counter handling.
+
+       * rt/aio_misc.c (handle_fildes_io): Correctly dequeue elements
+       from request queue.
+
+       * test-skeleton.c (main): Make stdout unbuffered.  Improve message
+       of signal on exit even more.
+
        * rt/aio_suspend.c (aio_suspend): Use PTHREAD_COND_INITIALIZER
        instead of call to pthread_cond_init.
        * rt/lio_listio.c (lio_listio): Likewise.
index 030bef9f76761e26961dccbd004e10f7f66c3a56..ca8f4de4bd0039cfe9d4752b79b884642e845c26 100644 (file)
@@ -476,6 +476,8 @@ handle_fildes_io (void *arg)
            runp->next_fd->last_fd = runp->last_fd;
          if (runp->last_fd != NULL)
            runp->last_fd->next_fd = runp->next_fd;
+         else
+           requests = runp->next_fd;
        }
       else
        {
@@ -486,6 +488,8 @@ handle_fildes_io (void *arg)
            runp->next_fd->last_fd = runp->next_prio;
          if (runp->last_fd != NULL)
            runp->last_fd->next_fd = runp->next_prio;
+         else
+           requests = runp->next_prio;
        }
 
       /* Free the old element.  */
index e4d972960fab58fa08f9dc32367bb691a56b9bc6..03c3bf2f6b9bb4591d0c51b3fcc45bd11219e41f 100644 (file)
@@ -93,7 +93,7 @@ lio_listio (mode, list, nent, sig)
          {
            waitlist[cnt].cond = &cond;
            waitlist[cnt].next = requests[cnt]->waiting;
-           waitlist[cnt].counterp = NULL;
+           waitlist[cnt].counterp = &total;
            waitlist[cnt].sigevp = NULL;
            requests[cnt]->waiting = &waitlist[cnt];
            ++total;
@@ -105,8 +105,7 @@ lio_listio (mode, list, nent, sig)
       pthread_setcancelstate (PTHREAD_CANCEL_DISABLE, &oldstate);
 
       while (total > 0)
-       if (pthread_cond_wait (&cond, &__aio_requests_mutex) == 0)
-         --total;
+       pthread_cond_wait (&cond, &__aio_requests_mutex);
 
       /* Now it's time to restore the cancelation state.  */
       pthread_setcancelstate (oldstate, NULL);
index e319dea4eb2d65fa2ef2ab2176bdcca9c966149a..83833ee117ba0571c97f7f19c7f7906968664983 100644 (file)
@@ -69,16 +69,32 @@ test_file (const void *buf, size_t size, int fd, const char *msg)
       return 1;
     }
 
-  if (ftruncate (fd, 0) < 0)
-    {
-      error (0, errno, "%s: failed truncate", msg);
-      return 1;
-    }
+  printf ("%s test ok\n", msg);
 
   return 0;
 }
 
 
+void
+do_wait (struct aiocb **cbp, size_t nent)
+{
+  int go_on;
+  do
+    {
+      size_t cnt;
+
+      aio_suspend ((const struct aiocb *const *) cbp, nent, NULL);
+      go_on = 0;
+      for (cnt = 0; cnt < nent; ++cnt)
+       if (cbp[cnt] != NULL && aio_error (cbp[cnt]) == EINPROGRESS)
+         go_on = 1;
+       else
+         cbp[cnt] = NULL;
+    }
+  while (go_on);
+}
+
+
 int
 do_test (int argc, char *argv[])
 {
@@ -90,7 +106,6 @@ do_test (int argc, char *argv[])
   size_t cnt;
   int fd;
   int result = 0;
-  int go_on;
 
   name_len = strlen (test_dir);
   name = malloc (name_len + sizeof ("/aioXXXXXX"));
@@ -120,23 +135,50 @@ do_test (int argc, char *argv[])
   for (cnt = 10; cnt > 0; )
     aio_write (cbp[--cnt]);
   /* Wait 'til the results are there.  */
-  do
+  do_wait (cbp, 10);
+  /* Test this.  */
+  result |= test_file (buf, sizeof (buf), fd, "aio_write");
+
+  /* Read now as we've written it.  */
+  memset (buf, '\0', sizeof (buf));
+  /* Issue the commands.  */
+  for (cnt = 10; cnt > 0; )
     {
-      aio_suspend ((const struct aiocb *const *) cbp, 10, NULL);
-      go_on = 0;
-      for (cnt = 0; cnt < 10; ++cnt)
-       if (cbp[cnt] != NULL && aio_error (cbp[cnt]) == EINPROGRESS)
-         go_on = 1;
-       else
-         {
-           if (cbp[cnt] != NULL)
-             printf ("request %d finished\n", cnt);
-           cbp[cnt] = NULL;
-         }
+      --cnt;
+      cbp[cnt] = &cbs[cnt];
+      aio_read (cbp[cnt]);
     }
-  while (go_on);
+  /* Wait 'til the results are there.  */
+  do_wait (cbp, 10);
   /* Test this.  */
-  result |= test_file (buf, sizeof (buf), fd, "aio_write");
+  for (cnt = 0; cnt < 1000; ++cnt)
+    if (buf[cnt] != '0' + (cnt / 100))
+      {
+       result = 1;
+       error (0, 0, "comparison failed for aio_read test");
+       break;
+      }
+
+  if (cnt == 1000)
+    puts ("aio_read test ok");
+
+  /* Remove the test file contents.  */
+  if (ftruncate (fd, 0) < 0)
+    {
+      error (0, errno, "ftruncate failed\n");
+      result = 1;
+    }
+
+  /* Test lio_listio.  */
+  for (cnt = 0; cnt < 10; ++cnt)
+    {
+      cbs[cnt].aio_lio_opcode = LIO_WRITE;
+      cbp[cnt] = &cbs[cnt];
+    }
+  /* Issue the command.  */
+  lio_listio (LIO_WAIT, cbp, 10, NULL);
+  /* ...and immediately test it since we started it in wait mode.  */
+  result |= test_file (buf, sizeof (buf), fd, "lio_listio (write)");
 
   return result;
 }
index 39c6073c73eff547b4ac415766b86fe4d71f5b89..497adbe5ba71e6be92fc7d371a357e1d3022139c 100644 (file)
@@ -155,6 +155,9 @@ main (int argc, char *argv[])
        test_dir = "/tmp";
     }
 
+  /* Make sure we see all message, even those on stdout.  */
+  setvbuf (stdout, NULL, _IONBF, 0);
+
   /* If we are not expected to fork run the function immediately.  */
   if (direct)
     return TEST_FUNCTION;
@@ -213,7 +216,7 @@ main (int argc, char *argv[])
        fprintf (stderr, "Incorrect signal from child: got `%s', need `%s'\n",
                 strsignal (WTERMSIG (status)), strsignal (EXPECTED_SIGNAL));
       else
-       fprintf (stderr, "Incorrect signal from child: got `%s'\n",
+       fprintf (stderr, "Didn't expect signal from child: got `%s'\n",
                 strsignal (WTERMSIG (status)));
       exit (1);
     }