diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-12-27 09:53:35 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-12-27 09:53:35 +0000 |
commit | bd523e22b5891349d8ce71dadc8ebbf7376da56c (patch) | |
tree | 5443421ffc5360fbf6edcae058076a1db8192f19 | |
parent | f093cd523bb916004256b043545bac5f1e499e46 (diff) |
kill off unused warning
-rw-r--r-- | libpthread/linuxthreads.old/join.c | 2 |
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; |