[BZ #2526, BZ #3138, BZ #3143]
authorUlrich Drepper <drepper@redhat.com>
Tue, 12 Sep 2006 11:44:01 +0000 (11:44 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 12 Sep 2006 11:44:01 +0000 (11:44 +0000)
2006-09-12  Jakub Jelinek  <jakub@redhat.com>
[BZ #2526]
* README.libm: Fix a thinko in sqrt algorithm description.

[BZ #3143]
* manual/string.texi (argz_delete): Fix prototype.
Patch by <alpt@freaknet.org>.

2006-08-26  Joseph Myers  <joseph@codesourcery.com>

[BZ #3138]
* io/test-lfs.c (do_prepare): Give name_len type size_t.
* io/tst-fcntl.c (do_prepare): Likewise.
* posix/tst-exec.c (do_prepare): Likewise.
* posix/tst-preadwrite.c (do_prepare): Likewise.
* posix/tst-spawn.c (do_prepare): Likewise.
* posix/tst-truncate.c (do_prepare): Likewise.
* rt/tst-aio.c (do_prepare): Likewise.
* rt/tst-aio64.c (do_prepare): Likewise.
* stdlib/test-canon2.c (do_prepare): Give test_dir_len type
size_t.

14 files changed:
ChangeLog
README.libm
io/test-lfs.c
io/tst-fcntl.c
manual/string.texi
nptl/ChangeLog
nptl/tst-cond22.c
posix/tst-exec.c
posix/tst-preadwrite.c
posix/tst-spawn.c
posix/tst-truncate.c
rt/tst-aio.c
rt/tst-aio64.c
stdlib/test-canon2.c

index 004efe9..d7317bd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,26 @@
+2006-09-12  Jakub Jelinek  <jakub@redhat.com>
+
+       [BZ #2526]
+       * README.libm: Fix a thinko in sqrt algorithm description.
+
+       [BZ #3143]
+       * manual/string.texi (argz_delete): Fix prototype.
+       Patch by <alpt@freaknet.org>.
+
+2006-08-26  Joseph Myers  <joseph@codesourcery.com>
+
+       [BZ #3138]
+       * io/test-lfs.c (do_prepare): Give name_len type size_t.
+       * io/tst-fcntl.c (do_prepare): Likewise.
+       * posix/tst-exec.c (do_prepare): Likewise.
+       * posix/tst-preadwrite.c (do_prepare): Likewise.
+       * posix/tst-spawn.c (do_prepare): Likewise.
+       * posix/tst-truncate.c (do_prepare): Likewise.
+       * rt/tst-aio.c (do_prepare): Likewise.
+       * rt/tst-aio64.c (do_prepare): Likewise.
+       * stdlib/test-canon2.c (do_prepare): Give test_dir_len type
+       size_t.
+
 2006-09-09  Ulrich Drepper  <drepper@redhat.com>
 
        [BZ #2821]
index 33ace8c..f058cf8 100644 (file)
@@ -486,7 +486,7 @@ sqrt
  *   Bit by bit method using integer arithmetic. (Slow, but portable)
  *   1. Normalization
  *     Scale x to y in [1,4) with even powers of 2:
- *     find an integer k such that  1 <= (y=x*2^(2k)) < 4, then
+ *     find an integer k such that  1 <= (y=x*2^(-2k)) < 4, then
  *             sqrt(x) = 2^k * sqrt(y)
  *   2. Bit by bit computation
  *     Let q  = sqrt(y) truncated to i bit after binary point (q = 1),
index a4669c3..c27af40 100644 (file)
@@ -50,7 +50,7 @@ int fd;
 void
 do_prepare (int argc, char *argv[])
 {
-  char name_len;
+  size_t name_len;
   struct rlimit64 rlim;
 
   name_len = strlen (test_dir);
index fed8849..93ea9b0 100644 (file)
@@ -42,7 +42,7 @@ static char *name;
 void
 do_prepare (int argc, char *argv[])
 {
-   char name_len;
+   size_t name_len;
 
    name_len = strlen (test_dir);
    name = malloc (name_len + sizeof ("/fcntlXXXXXX"));
index 2717699..f582bad 100644 (file)
@@ -2534,7 +2534,7 @@ The @code{argz_append} function appends @var{buf_len} bytes starting at
 
 @comment argz.h
 @comment GNU
-@deftypefun {error_t} argz_delete (char **@var{argz}, size_t *@var{argz_len}, char *@var{entry})
+@deftypefun {void} argz_delete (char **@var{argz}, size_t *@var{argz_len}, char *@var{entry})
 If @var{entry} points to the beginning of one of the elements in the
 argz vector @code{*@var{argz}}, the @code{argz_delete} function will
 remove this entry and reallocate @code{*@var{argz}}, modifying
index c269f3d..6c7fd49 100644 (file)
@@ -1,3 +1,8 @@
+2006-09-12  Ulrich Drepper  <drepper@redhat.com>
+
+       * tst-cond22.c (tf): Slight changes to the pthread_cond_wait use
+       to guarantee the thread is always canceled.
+
 2006-09-08  Jakub Jelinek  <jakub@redhat.com>
 
        * tst-cond22.c: Include pthread.h instead of pthreadP.h.
index 1094c09..e7c8d01 100644 (file)
@@ -30,17 +30,24 @@ tf (void *arg)
       exit (1);
     }
   pthread_cleanup_push (cl, NULL);
-  if (pthread_cond_wait (&c, &m) != 0)
-    {
-      printf ("%s: cond_wait failed\n", __func__);
-      exit (1);
+  /* We have to loop here because the cancellation might come after
+     the cond_wait call left the cancelable area and is then waiting
+     on the mutex.  In this case the beginning of the second cond_wait
+     call will cause the cancellation to happen.  */
+  while (1)
+    {
+      if (pthread_cond_wait (&c, &m) != 0)
+       {
+         printf ("%s: cond_wait failed\n", __func__);
+         exit (1);
+       }
+      if (pthread_mutex_unlock (&m) != 0)
+       {
+         printf ("%s: mutex_unlock failed\n", __func__);
+         exit (1);
+       }
     }
   pthread_cleanup_pop (0);
-  if (pthread_mutex_unlock (&m) != 0)
-    {
-      printf ("%s: mutex_unlock failed\n", __func__);
-      exit (1);
-    }
   return NULL;
 }
 
index a67d200..f3971e8 100644 (file)
@@ -57,7 +57,7 @@ static const char fd2string[] = "This file should stay opened";
 void
 do_prepare (int argc, char *argv[])
 {
-   char name_len;
+   size_t name_len;
 
    name_len = strlen (test_dir);
    name1 = malloc (name_len + sizeof ("/execXXXXXX"));
index 2810448..8227a82 100644 (file)
@@ -53,7 +53,7 @@ int fd;
 void
 do_prepare (int argc, char *argv[])
 {
-   char name_len;
+   size_t name_len;
 
 #define FNAME FNAME2(TRUNCATE)
 #define FNAME2(s) "/" STRINGIFY(s) "XXXXXX"
index 745f64d..4b5d894 100644 (file)
@@ -61,7 +61,7 @@ static const char fd3string[] = "This file will be opened";
 void
 do_prepare (int argc, char *argv[])
 {
-   char name_len;
+   size_t name_len;
 
    name_len = strlen (test_dir);
    name1 = (char *) malloc (name_len + sizeof ("/spawnXXXXXX"));
index d786306..78a5139 100644 (file)
@@ -54,7 +54,7 @@ int fd;
 void
 do_prepare (int argc, char *argv[])
 {
-   char name_len;
+   size_t name_len;
 
 #define FNAME FNAME2(TRUNCATE)
 #define FNAME2(s) "/" STRINGIFY(s) "XXXXXX"
index 24efad3..ba50bdb 100644 (file)
@@ -48,7 +48,7 @@ int fd;
 void
 do_prepare (int argc, char *argv[])
 {
-  char name_len;
+  size_t name_len;
 
   name_len = strlen (test_dir);
   name = malloc (name_len + sizeof ("/aioXXXXXX"));
index 93e8cb2..b6d964f 100644 (file)
@@ -49,7 +49,7 @@ int fd;
 void
 do_prepare (int argc, char *argv[])
 {
-  char name_len;
+  size_t name_len;
 
   name_len = strlen (test_dir);
   name = malloc (name_len + sizeof ("/aioXXXXXX"));
index ba49199..f182e95 100644 (file)
@@ -39,7 +39,7 @@ char *name2;
 void
 do_prepare (int argc, char *argv[])
 {
-  char test_dir_len;
+  size_t test_dir_len;
 
   test_dir_len = strlen (test_dir);