[uClibc-cvs] uClibc/libpthread/linuxthreads_db td_thr_tls_get_addr.c, 1.1, 1.2

Erik Andersen andersen at uclibc.org
Tue Apr 20 06:32:43 UTC 2004


Update of /var/cvs/uClibc/libpthread/linuxthreads_db
In directory nail:/tmp/cvs-serv21542/libpthread/linuxthreads_db

Modified Files:
	td_thr_tls_get_addr.c 
Log Message:
Cope with gcc 3.4's more aggressive persuit of attribute unused


Index: td_thr_tls_get_addr.c
===================================================================
RCS file: /var/cvs/uClibc/libpthread/linuxthreads_db/td_thr_tls_get_addr.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- a/td_thr_tls_get_addr.c	27 Feb 2003 18:13:01 -0000	1.1
+++ b/td_thr_tls_get_addr.c	20 Apr 2004 06:32:41 -0000	1.2
@@ -27,10 +27,10 @@
 
 
 td_err_e
-td_thr_tls_get_addr (const td_thrhandle_t *th __attribute__ ((unused)),
-		     void *map_address __attribute__ ((unused)),
-		     size_t offset __attribute__ ((unused)),
-		     void **address __attribute__ ((unused)))
+td_thr_tls_get_addr (const td_thrhandle_t *th __attribute_used__,
+		     void *map_address __attribute_used__,
+		     size_t offset __attribute_used__,
+		     void **address __attribute_used__)
 {
 #if USE_TLS
   size_t modid;




More information about the uClibc-cvs mailing list