1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-10-12 19:04:54 +03:00
2002-12-10  Ulrich Drepper  <drepper@redhat.com>

	* sysdeps/posix/sigpause.c: Define all functions as weak.

	* elf/tst-tls7.c (do_test): Adjustments for l_tls_modid being of
	type size_t.
This commit is contained in:
Ulrich Drepper
2002-12-11 00:49:28 +00:00
parent 75cddafe47
commit 9cfd817252
2 changed files with 9 additions and 2 deletions

View File

@@ -1,3 +1,10 @@
2002-12-10 Ulrich Drepper <drepper@redhat.com>
* sysdeps/posix/sigpause.c: Define all functions as weak.
* elf/tst-tls7.c (do_test): Adjustments for l_tls_modid being of
type size_t.
2002-12-10 Jakub Jelinek <jakub@redhat.com> 2002-12-10 Jakub Jelinek <jakub@redhat.com>
* elf/tst-array1.c (preinit_array, init_array, fini_array): * elf/tst-array1.c (preinit_array, init_array, fini_array):

View File

@@ -32,9 +32,9 @@ do_test (void)
time. The value of the first round is used. */ time. The value of the first round is used. */
if (modid == -1) if (modid == -1)
modid = ((struct link_map *) h)->l_tls_modid; modid = ((struct link_map *) h)->l_tls_modid;
else if (((struct link_map *) h)->l_tls_modid != modid) else if (((struct link_map *) h)->l_tls_modid != (size_t) modid)
{ {
printf ("round %d: modid now %d, initially %d\n", printf ("round %d: modid now %zu, initially %d\n",
i, ((struct link_map *) h)->l_tls_modid, modid); i, ((struct link_map *) h)->l_tls_modid, modid);
result = 1; result = 1;
} }