Skip to content

Commit

Permalink
[BZ #2526, BZ #3138, BZ #3143]
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Ulrich Drepper committed Sep 12, 2006
1 parent 41aba3d commit 30aa578
Show file tree
Hide file tree
Showing 14 changed files with 55 additions and 20 deletions.
23 changes: 23 additions & 0 deletions 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]
Expand Down
2 changes: 1 addition & 1 deletion README.libm
Expand Up @@ -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),
Expand Down
2 changes: 1 addition & 1 deletion io/test-lfs.c
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion io/tst-fcntl.c
Expand Up @@ -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"));
Expand Down
2 changes: 1 addition & 1 deletion manual/string.texi
Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions nptl/ChangeLog
@@ -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.
Expand Down
25 changes: 16 additions & 9 deletions nptl/tst-cond22.c
Expand Up @@ -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;
}

Expand Down
2 changes: 1 addition & 1 deletion posix/tst-exec.c
Expand Up @@ -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"));
Expand Down
2 changes: 1 addition & 1 deletion posix/tst-preadwrite.c
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion posix/tst-spawn.c
Expand Up @@ -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"));
Expand Down
2 changes: 1 addition & 1 deletion posix/tst-truncate.c
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion rt/tst-aio.c
Expand Up @@ -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"));
Expand Down
2 changes: 1 addition & 1 deletion rt/tst-aio64.c
Expand Up @@ -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"));
Expand Down
2 changes: 1 addition & 1 deletion stdlib/test-canon2.c
Expand Up @@ -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);

Expand Down

0 comments on commit 30aa578

Please sign in to comment.