about summary refs log tree commit diff
path: root/linuxthreads_db
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-08-22 00:13:04 +0000
committerRoland McGrath <roland@gnu.org>2002-08-22 00:13:04 +0000
commit90d1d40b27ab1785e309c243e39765ff6cce9442 (patch)
treed1f05ac3c9a5e6f80b758308c41c41c80434b403 /linuxthreads_db
parentc2248c44e4eec619d2cf53d01fef544dd2624d96 (diff)
downloadglibc-90d1d40b27ab1785e309c243e39765ff6cce9442.tar.gz
glibc-90d1d40b27ab1785e309c243e39765ff6cce9442.tar.xz
glibc-90d1d40b27ab1785e309c243e39765ff6cce9442.zip
* configure.in: Make GCC version check require 3.[2-9]* and no others.
	* configure: Regenerated.
	* manual/install.texi (Tools for Compilation): Say 3.2 is required.
	(Configuring and compiling): Don't mention older GCC versions any more.
	* INSTALL: Regenerated.

	* manual/install.texi (Configuring and compiling, Installation,
	Running make install, Linux): Linux -> GNU/Linux where appropriate.

	* elf/rtld.c (_dl_start_final): Move defn before _dl_start so it can
	be inlined.  Declare it with always_inline if [DONT_USE_BOOTSTRAP_MAP]
	and with noinline otherwise.  Remove hack alloca use to prevent
	inlining, we can ask for it explicitly nowadays.
Diffstat (limited to 'linuxthreads_db')
-rw-r--r--linuxthreads_db/ChangeLog5
-rw-r--r--linuxthreads_db/td_thr_tls_get_addr.c8
2 files changed, 9 insertions, 4 deletions
diff --git a/linuxthreads_db/ChangeLog b/linuxthreads_db/ChangeLog
index dd87f89d76..f8028b4fcc 100644
--- a/linuxthreads_db/ChangeLog
+++ b/linuxthreads_db/ChangeLog
@@ -1,3 +1,8 @@
+2002-08-21  Roland McGrath  <roland@redhat.com>
+
+	* td_thr_tls_get_addr.c (td_thr_tls_get_addr): __attribute_used__ ->
+	__attribute__ ((unused)) for arguments.
+
 2002-08-07  Ulrich Drepper  <drepper@redhat.com>
 
 	* thread_dbP.h: Define LINUXTHREADS_INITIAL_REPORT_EVENTS.
diff --git a/linuxthreads_db/td_thr_tls_get_addr.c b/linuxthreads_db/td_thr_tls_get_addr.c
index 77ef0cac4c..f6e356b339 100644
--- a/linuxthreads_db/td_thr_tls_get_addr.c
+++ b/linuxthreads_db/td_thr_tls_get_addr.c
@@ -27,10 +27,10 @@
 
 
 td_err_e
-td_thr_tls_get_addr (const td_thrhandle_t *th __attribute_used__,
-		     struct link_map *map __attribute_used__,
-		     size_t offset __attribute_used__,
-		     void **address __attribute_used__)
+td_thr_tls_get_addr (const td_thrhandle_t *th __attribute__ ((unused)),
+		     struct link_map *map __attribute__ ((unused)),
+		     size_t offset __attribute__ ((unused)),
+		     void **address __attribute__ ((unused)))
 {
 #if USE_TLS
   struct _pthread_descr_struct pds;