summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2005-07-25 15:31:37 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2005-07-25 15:31:37 +0000
commit566a67b2c81a81183e97af475d8d30ae8a419228 (patch)
tree7c09a1b3a35e901d8e0afbf9ddb8761026d262c0
parent0c3721c431a804dcce0cb0c5a18d8fb55067ebab (diff)
downloadATCD-566a67b2c81a81183e97af475d8d30ae8a419228.tar.gz
ChangeLogTag: Mon Jul 25 15:28:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--ChangeLog13
-rw-r--r--README2
-rw-r--r--TAO/ChangeLog10
-rw-r--r--ace/Naming_Context.cpp2
-rw-r--r--ace/Refcountable.h3
-rw-r--r--ace/Timer_Hash_T.cpp4
6 files changed, 26 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 0f702623677..1fafcf0ba11 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+Mon Jul 25 15:31:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * ace/Timer_Hash_T.cpp:
+ Initialise some pointersr with 0
+
+ * ace/Refcountable.h:
+ Removed some empty doxygen tags
+
+ * ace/Naming_Context.cpp:
+ Removed not needed ACE_UNUSED_ARG
+
Sat Jul 23 16:36:36 2005 Jaiganesh B <jai@dre.vanderbilt.edu>
* bin/ciao_tests.lst:
@@ -13,7 +24,7 @@ Fri Jul 22 16:31:29 2005 Steve Huston <shuston@riverace.com>
union and renamed it to not be a compiler-private name (with 2
leading underscores). This should resolve all the issues. Thanks
to Simon Massey for figuring this out.
-
+
Fri Jul 22 11:13:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/MakeProjectCreator/config/ciao_server_dnc.mpb:
diff --git a/README b/README
index 7b5d6060272..bd81f4c5a4e 100644
--- a/README
+++ b/README
@@ -1,6 +1,6 @@
This document is also available at the following URL:
-http://www.cs.wustl.edu/~schmidt/ACE.html.
+http://www.cs.wustl.edu/~schmidt/ACE.html
All software and documentation is available via both anonymous ftp and
the World Wide Web.]
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 02aad96f8ca..071dfef086c 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,13 @@
+Mon Jul 25 15:28:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * orbsvcs/tests/AVStreams/Simple_Three_Stage/distributer.cpp:
+ * orbsvcs/tests/AVStreams/Asynch_Three_Stage/Connection_Manager.cpp:
+ Initialise pointers to 0 and fixed some typos in comments
+
+ * tao/PortableServer/Root_POA.{h,cpp}:
+ * tao/PortableServer/POAManager.{h,cpp}:
+ Overruled _get_orb as required by the CORBA spec
+
Mon Jul 25 13:52:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Acceptor.cpp:
diff --git a/ace/Naming_Context.cpp b/ace/Naming_Context.cpp
index 6ea9bffe458..9e01e1669ca 100644
--- a/ace/Naming_Context.cpp
+++ b/ace/Naming_Context.cpp
@@ -42,7 +42,7 @@ ACE_Naming_Context::info (ACE_TCHAR **strp,
size_t length) const
{
ACE_TRACE ("ACE_Naming_Context::info");
- ACE_UNUSED_ARG (length);
+
ACE_TCHAR buf[BUFSIZ];
ACE_OS::sprintf (buf,
diff --git a/ace/Refcountable.h b/ace/Refcountable.h
index fb2b29078f8..8f1bc155705 100644
--- a/ace/Refcountable.h
+++ b/ace/Refcountable.h
@@ -23,9 +23,6 @@
/**
* @class ACE_Refcountable
*
- * @brief
- *
- *
*/
class ACE_Export ACE_Refcountable
{
diff --git a/ace/Timer_Hash_T.cpp b/ace/Timer_Hash_T.cpp
index 8f96f4fe1cc..f7fa4cf734e 100644
--- a/ace/Timer_Hash_T.cpp
+++ b/ace/Timer_Hash_T.cpp
@@ -413,7 +413,7 @@ ACE_Timer_Hash_T<TYPE, FUNCTOR, ACE_LOCK, BUCKET>::schedule_i (const TYPE &type,
size_t position =
future_time.sec () % this->table_size_;
- Hash_Token<TYPE> *h;
+ Hash_Token<TYPE> *h = 0;
ACE_NEW_RETURN (h,
Hash_Token<TYPE> (act,
@@ -562,7 +562,7 @@ ACE_Timer_Hash_T<TYPE, FUNCTOR, ACE_LOCK, BUCKET>::cancel (const TYPE &type,
size_t i; // loop variable.
- Hash_Token<TYPE> **timer_ids;
+ Hash_Token<TYPE> **timer_ids = 0;
ACE_NEW_RETURN (timer_ids,
Hash_Token<TYPE> *[this->size_],