summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--nptl/ChangeLog4
-rw-r--r--nptl_db/ChangeLog7
-rw-r--r--sysdeps/powerpc/elf/libc-start.c36
4 files changed, 26 insertions, 24 deletions
diff --git a/ChangeLog b/ChangeLog
index c162fa8bd5..e3ce9f7bd1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2004-04-03 Ulrich Drepper <drepper@redhat.com>
+ * sysdeps/powerpc/elf/libc-start.c: no need for a separate
+ function for __aux_init_cache.
+
* inet/test-ifaddrs.c: Fight warnings.
* argp/argp-help.c: Fight warnings.
diff --git a/nptl/ChangeLog b/nptl/ChangeLog
index a441b5cf8f..860e5a4148 100644
--- a/nptl/ChangeLog
+++ b/nptl/ChangeLog
@@ -1,3 +1,7 @@
+2004-04-03 Ulrich Drepper <drepper@redhat.com>
+
+ * tst-clock2.c (tf): Don't define unless needed.
+
2004-03-30 H.J. Lu <hongjiu.lu@intel.com>
* Makefile (link-libc-static): Use $(static-gnulib) instead of
diff --git a/nptl_db/ChangeLog b/nptl_db/ChangeLog
index 6f01f2be72..31a429fa45 100644
--- a/nptl_db/ChangeLog
+++ b/nptl_db/ChangeLog
@@ -1,3 +1,10 @@
+2004-04-03 Ulrich Drepper <drepper@redhat.com>
+
+ * td_ta_thr_iter.c (td_ta_thr_iter): Initialize list to avoid warning.
+ * td_ta_clear_event.c (td_ta_clear_event): Initialize eventmask to
+ avoid warning.
+ * td_ta_set_event.c (td_ta_set_event): Likewise.
+
2004-03-24 Roland McGrath <roland@redhat.com>
* fetch-value.c (_td_locate_field): Cast DB_DESC_OFFSET to int32_t.
diff --git a/sysdeps/powerpc/elf/libc-start.c b/sysdeps/powerpc/elf/libc-start.c
index 1e1d68297e..eed3e06c8a 100644
--- a/sysdeps/powerpc/elf/libc-start.c
+++ b/sysdeps/powerpc/elf/libc-start.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1998,2000,2001,2002,2003 Free Software Foundation, Inc.
+/* Copyright (C) 1998,2000,2001,2002,2003,2004 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
@@ -25,28 +25,6 @@
extern int __cache_line_size;
weak_extern (__cache_line_size)
-/* Scan the Aux Vector for the "Data Cache Block Size" entry. If found
- verify that the static extern __cache_line_size is defined by checking
- for not NULL. If it is defined then assign the cache block size
- value to __cache_line_size. */
-static inline void
-__aux_init_cache (ElfW(auxv_t) *av)
-{
- for (; av->a_type != AT_NULL; ++av)
- switch (av->a_type)
- {
- case AT_DCACHEBSIZE:
- {
- int *cls = & __cache_line_size;
- if (cls != NULL)
- *cls = av->a_un.a_val;
- }
- break;
- }
-}
-/* This is used in sysdeps/generic/libc-start.c. */
-#define AUX_VECTOR_INIT __aux_init_cache
-
/* The main work is done in the generic function. */
#define LIBC_START_MAIN generic_start_main
#define LIBC_START_DISABLE_INLINE
@@ -104,7 +82,17 @@ BP_SYM (__libc_start_main) (int argc, char *__unbounded *__unbounded ubp_av,
}
/* Initialize the __cache_line_size variable from the aux vector. */
- __aux_init_cache (auxvec);
+ for (ElfW(auxv_t) *av = auxvec; av->a_type != AT_NULL; ++av)
+ switch (av->a_type)
+ {
+ case AT_DCACHEBSIZE:
+ {
+ int *cls = & __cache_line_size;
+ if (cls != NULL)
+ *cls = av->a_un.a_val;
+ }
+ break;
+ }
return generic_start_main (stinfo->main, argc, ubp_av, auxvec,
stinfo->init, stinfo->fini, rtld_fini,