summaryrefslogtreecommitdiff
path: root/libpthread
diff options
context:
space:
mode:
authorJoakim Tjernlund <joakim.tjernlund@transmode.se>2005-05-28 22:11:25 +0000
committerJoakim Tjernlund <joakim.tjernlund@transmode.se>2005-05-28 22:11:25 +0000
commitb81c57129f47b15158d5654990634f6f625c5c81 (patch)
treebf6a8832dd08170fc40469dc4ce14b5b3025b6f0 /libpthread
parent4227fc98fe95f75d8e7216cbf699a6477660c0b5 (diff)
fix warnings like
td_thr_tls_get_addr.c:30: warning: `__used__' attribute ignored
Diffstat (limited to 'libpthread')
-rw-r--r--libpthread/linuxthreads_db/td_thr_tls_get_addr.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libpthread/linuxthreads_db/td_thr_tls_get_addr.c b/libpthread/linuxthreads_db/td_thr_tls_get_addr.c
index 330407482..e140b77dc 100644
--- a/libpthread/linuxthreads_db/td_thr_tls_get_addr.c
+++ b/libpthread/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__,
- 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;