[uClibc-cvs] svn commit: trunk/uClibc/libpthread/linuxthreads_db

jocke at uclibc.org jocke at uclibc.org
Sat May 28 22:11:25 UTC 2005


Author: jocke
Date: 2005-05-28 16:11:25 -0600 (Sat, 28 May 2005)
New Revision: 10431

Log:
fix warnings like
  td_thr_tls_get_addr.c:30: warning: `__used__' attribute ignored


Modified:
   trunk/uClibc/libpthread/linuxthreads_db/td_thr_tls_get_addr.c


Changeset:
Modified: trunk/uClibc/libpthread/linuxthreads_db/td_thr_tls_get_addr.c
===================================================================
--- trunk/uClibc/libpthread/linuxthreads_db/td_thr_tls_get_addr.c	2005-05-28 21:59:38 UTC (rev 10430)
+++ trunk/uClibc/libpthread/linuxthreads_db/td_thr_tls_get_addr.c	2005-05-28 22:11:25 UTC (rev 10431)
@@ -27,10 +27,10 @@
 
 
 td_err_e
-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__)
+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)))
 {
 #if USE_TLS
   size_t modid;




More information about the uClibc-cvs mailing list