summaryrefslogtreecommitdiff
path: root/libpthread/linuxthreads.old
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-12-27 09:53:35 +0000
committerMike Frysinger <vapier@gentoo.org>2005-12-27 09:53:35 +0000
commitbd523e22b5891349d8ce71dadc8ebbf7376da56c (patch)
tree5443421ffc5360fbf6edcae058076a1db8192f19 /libpthread/linuxthreads.old
parentf093cd523bb916004256b043545bac5f1e499e46 (diff)
kill off unused warning
Diffstat (limited to 'libpthread/linuxthreads.old')
-rw-r--r--libpthread/linuxthreads.old/join.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpthread/linuxthreads.old/join.c b/libpthread/linuxthreads.old/join.c
index 5aeec6a20..a1172fa34 100644
--- a/libpthread/linuxthreads.old/join.c
+++ b/libpthread/linuxthreads.old/join.c
@@ -93,7 +93,7 @@ void pthread_exit(void * retval)
/* Function called by pthread_cancel to remove the thread from
waiting on a condition variable queue. */
-static int join_extricate_func(void *obj, pthread_descr th)
+static int join_extricate_func(void *obj, pthread_descr th attribute_unused)
{
volatile pthread_descr self = thread_self();
pthread_handle handle = obj;