Update.
authorUlrich Drepper <drepper@redhat.com>
Wed, 8 Aug 2001 02:52:43 +0000 (02:52 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 8 Aug 2001 02:52:43 +0000 (02:52 +0000)
2001-08-07  Jakub Jelinek  <jakub@redhat.com>

* sysdeps/unix/seekdir.c (seekdir): Set dirp->filepos.

* dirent/tst-seekdir.c (main): Check whether telldir right after
seekdir returns 2nd argument given to seekdir.

2001-08-07  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>

* dlfcn/Makefile (tststatic-ENV): Add $(common-objpfx) to
LD_LIBRARY_PATH.

ChangeLog
dirent/tst-seekdir.c
dlfcn/Makefile
sysdeps/unix/seekdir.c

index 008531d40f7560a30eb39744a2e14a2c24ac9853..3217df8161b623e57b3eba3ec18f9d6e23c54150 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+2001-08-07  Jakub Jelinek  <jakub@redhat.com>
+
+       * sysdeps/unix/seekdir.c (seekdir): Set dirp->filepos.
+
+       * dirent/tst-seekdir.c (main): Check whether telldir right after
+       seekdir returns 2nd argument given to seekdir.
+
+2001-08-07  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
+
+       * dlfcn/Makefile (tststatic-ENV): Add $(common-objpfx) to
+       LD_LIBRARY_PATH.
+
 2001-08-07  Andreas Jaeger  <aj@suse.de>
            Andreas Schwab  <schwab@suse.de>
            Bruno Haible  <haible@clisp.cons.org>
index f4d99ae6326f7a64a64545f07344aea6b6b05851..b833c30705fc06864956c2c75c7355dc0afbf3f4 100644 (file)
@@ -5,20 +5,21 @@
 int
 main (int argc, char *argv[])
 {
-
   DIR * dirp;
   long int save3 = 0;
+  long int cur;
   int i = 0;
+  int result = 0;
   struct dirent *dp;
 
-  dirp = opendir(".");
-  for (dp = readdir(dirp); dp != NULL; dp = readdir(dirp))
+  dirp = opendir (".");
+  for (dp = readdir (dirp); dp != NULL; dp = readdir (dirp))
     {
       /* save position 3 (after fourth entry) */
       if (i++ == 3)
-       save3 = telldir(dirp);
+       save3 = telldir (dirp);
 
-      printf("%s\n", dp->d_name);
+      printf ("%s\n", dp->d_name);
 
       /* stop at 400 (just to make sure dirp->__offset and dirp->__size are
         scrambled */
@@ -26,17 +27,24 @@ main (int argc, char *argv[])
        break;
     }
 
-  printf("going back past 4-th entry...\n");
+  printf ("going back past 4-th entry...\n");
 
   /* go back to saved entry */
   seekdir (dirp, save3);
 
+  /* Check whether telldir equals to save3 now.  */
+  cur = telldir (dirp);
+  if (cur != save3)
+    {
+      printf ("seekdir (d, %ld); telldir (d) == %ld\n", save3, cur);
+      result = 1;
+    }
 
   /* print remaining files (3-last) */
-  for (dp = readdir(dirp); dp != NULL; dp = readdir(dirp))
-    printf("%s\n", dp->d_name);
+  for (dp = readdir (dirp); dp != NULL; dp = readdir (dirp))
+    printf ("%s\n", dp->d_name);
 
 
   closedir (dirp);
-  return 0;
+  return result;
 }
index e8d9ccb35da2cb7dc676fd435e3be1d8ece39339..46ba661f54084e022fcd56d28e1053fb69acd739 100644 (file)
@@ -47,7 +47,7 @@ ifeq (yesyesyes,$(build-static)$(build-shared)$(elf))
 tests += tststatic
 tests-static += tststatic
 modules-names += modstatic
-tststatic-ENV = LD_LIBRARY_PATH=$(objpfx)
+tststatic-ENV = LD_LIBRARY_PATH=$(objpfx):$(common-objpfx)
 endif
 
 extra-objs += $(modules-names:=.os) eval.os
index dc1716ada7a58e9e6c0b25be3862eda69f07c4f8..1790e6237b22887c72cd1472ba497afe9f9e6cfc 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1995, 1996, 1997, 1999 Free Software Foundation, Inc.
+/* Copyright (C) 1991,1995,1996,1997,1999,2001 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
@@ -30,8 +30,9 @@ seekdir (dirp, pos)
      long int pos;
 {
   __libc_lock_lock (dirp->lock);
-  (void) __lseek(dirp->fd, pos, SEEK_SET);
+  (void) __lseek (dirp->fd, pos, SEEK_SET);
   dirp->size = 0;
   dirp->offset = 0;
+  dirp->filepos = pos;
   __libc_lock_unlock (dirp->lock);
 }