summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2005-02-17 01:12:59 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2005-02-17 01:12:59 +0000
commit4d60b5d1b0562dbced9ac2b1ff92277cfc401ca5 (patch)
tree947ec66cb863500a3d4a691bf3e298d6a276711d
parente1f432a451608ffa13a4268a304d799b511d63e3 (diff)
downloadATCD-4d60b5d1b0562dbced9ac2b1ff92277cfc401ca5.tar.gz
ChangeLogTag:Wed Feb 16 17:10:14 2005 Ossama Othman <ossama@dre.vanderbilt.edu>
-rw-r--r--ChangeLog7
-rw-r--r--ace/OS_NS_Thread.cpp4
2 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index fed4ad1b423..7bcfced6358 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Wed Feb 16 17:10:14 2005 Ossama Othman <ossama@dre.vanderbilt.edu>
+
+ * ace/OS_NS_Thread.cpp (thr_key_detach, thr_keycreate):
+
+ Removed "ACE_UNUSED_ARG" macro calls for non-existent "inst"
+ parameter.
+
Wed Feb 16 17:04:50 2005 Ossama Othman <ossama@dre.vanderbilt.edu>
* bin/MakeProjectCreator/config/rmcast.mpb:
diff --git a/ace/OS_NS_Thread.cpp b/ace/OS_NS_Thread.cpp
index c8eb36631b1..0f388ad1686 100644
--- a/ace/OS_NS_Thread.cpp
+++ b/ace/OS_NS_Thread.cpp
@@ -3332,7 +3332,7 @@ ACE_OS::thr_join (ACE_thread_t waiter_id,
#endif /* VXWORKS */
int
-ACE_OS::thr_key_detach (ACE_thread_key_t key, void * )
+ACE_OS::thr_key_detach (ACE_thread_key_t key, void *)
{
#if defined (ACE_HAS_WTHREADS) || defined (ACE_HAS_TSS_EMULATION) || (defined (ACE_PSOS) && defined (ACE_PSOS_HAS_TSS))
TSS_Cleanup_Instance cleanup;
@@ -3346,7 +3346,6 @@ ACE_OS::thr_key_detach (ACE_thread_key_t key, void * )
}
#else
ACE_UNUSED_ARG (key);
- ACE_UNUSED_ARG (inst);
ACE_NOTSUP_RETURN (-1);
#endif /* ACE_HAS_WTHREADS || ACE_HAS_TSS_EMULATION */
}
@@ -3483,7 +3482,6 @@ ACE_OS::thr_keycreate (ACE_thread_key_t *key,
return -1;
/* NOTREACHED */
# else /* ACE_HAS_TSS_EMULATION */
- ACE_UNUSED_ARG (inst);
return ACE_OS::thr_keycreate_native (key, dest);
# endif /* ACE_HAS_TSS_EMULATION */
# else /* ACE_HAS_THREADS */