summaryrefslogtreecommitdiff
path: root/TAO/tao
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2002-05-23 22:34:10 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2002-05-23 22:34:10 +0000
commit42d07f8990324cfa4dcb30c2a48d012d656e6e52 (patch)
tree81b069490b76be838cc1a740fc3bb5e653bb6202 /TAO/tao
parente07a320809638facb4543fa9316bc7b590b4e950 (diff)
downloadATCD-42d07f8990324cfa4dcb30c2a48d012d656e6e52.tar.gz
ChangeLogTag:Thu May 23 15:30:40 2002 Ossama Othman <ossama@uci.edu>
Diffstat (limited to 'TAO/tao')
-rw-r--r--TAO/tao/Cleanup_Func_Registry.h4
-rw-r--r--TAO/tao/Connection_Handler.h11
-rw-r--r--TAO/tao/LF_Event.h5
-rw-r--r--TAO/tao/ORB.cpp5
-rw-r--r--TAO/tao/Object_Ref_Table.cpp14
-rw-r--r--TAO/tao/debug.h14
6 files changed, 21 insertions, 32 deletions
diff --git a/TAO/tao/Cleanup_Func_Registry.h b/TAO/tao/Cleanup_Func_Registry.h
index e0359acea7c..1a6bfaf294f 100644
--- a/TAO/tao/Cleanup_Func_Registry.h
+++ b/TAO/tao/Cleanup_Func_Registry.h
@@ -14,13 +14,13 @@
#define TAO_CLEANUP_FUNC_REGISTRY_H
#include "ace/pre.h"
-#include "corbafwd.h"
-#include "ace/Array_Base.h"
+#include "TAO_Export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
+#include "ace/Array_Base.h"
/**
* @class TAO_Cleanup_Func_Registry
diff --git a/TAO/tao/Connection_Handler.h b/TAO/tao/Connection_Handler.h
index 15b6ab05910..4094ca80eda 100644
--- a/TAO/tao/Connection_Handler.h
+++ b/TAO/tao/Connection_Handler.h
@@ -1,4 +1,4 @@
-/* -*- C++ -*- */
+// -*- C++ -*-
//=============================================================================
/**
@@ -9,12 +9,13 @@
* @author Balachandran Natarajan <bala@cs.wustl.edu>
*/
//=============================================================================
+
#ifndef TAO_CONNECTION_HANDLER_H
#define TAO_CONNECTION_HANDLER_H
+
#include "ace/pre.h"
#include "LF_Event.h"
-#include "ace/SOCK.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
@@ -23,8 +24,9 @@
class TAO_ORB_Core;
class TAO_ORB_Core_TSS_Resources;
-class ACE_Reactor;
-class ACE_Event_Handler;
+class TAO_Transport;
+class ACE_SOCK;
+class ACE_Lock;
/**
* @class TAO_Connection_Handler
@@ -134,4 +136,5 @@ private:
#endif /* __ACE_INLINE__ */
#include "ace/post.h"
+
#endif /*TAO_CONNECTION_HANDLER_H*/
diff --git a/TAO/tao/LF_Event.h b/TAO/tao/LF_Event.h
index 937d4f8441c..ad1fe1c23ad 100644
--- a/TAO/tao/LF_Event.h
+++ b/TAO/tao/LF_Event.h
@@ -14,15 +14,14 @@
#define TAO_LF_EVENT_H
#include "ace/pre.h"
-#include "corbafwd.h"
+#include "TAO_Export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
-class TAO_Transport;
class TAO_LF_Follower;
-class TAO_Leader_Follower;
+
/**
* @class TAO_LF_Event
*
diff --git a/TAO/tao/ORB.cpp b/TAO/tao/ORB.cpp
index 50c8bdbb2f8..2cc143792ce 100644
--- a/TAO/tao/ORB.cpp
+++ b/TAO/tao/ORB.cpp
@@ -1181,11 +1181,6 @@ CORBA_ORB::register_initial_reference (const char * id,
CORBA::Object_ptr obj
ACE_ENV_ARG_DECL)
{
- if (id == 0)
- ACE_THROW (CORBA::ORB::InvalidName ());
- else if (ACE_OS_String::strlen (id) == 0)
- ACE_THROW (CORBA::ORB::InvalidName ());
-
TAO_Object_Ref_Table &table = this->orb_core_->object_ref_table ();
table.register_initial_reference (id, obj ACE_ENV_ARG_PARAMETER);
diff --git a/TAO/tao/Object_Ref_Table.cpp b/TAO/tao/Object_Ref_Table.cpp
index 2ed94778f87..1fc68f398bb 100644
--- a/TAO/tao/Object_Ref_Table.cpp
+++ b/TAO/tao/Object_Ref_Table.cpp
@@ -1,5 +1,6 @@
#include "Object_Ref_Table.h"
#include "Object.h"
+#include "ORB.h"
#include "Exception.h"
#include "Environment.h"
#include "CORBA_String.h"
@@ -29,14 +30,9 @@ TAO_Object_Ref_Table::register_initial_reference (
CORBA::Object_ptr obj
ACE_ENV_ARG_DECL)
{
- if (id == 0)
- ACE_THROW (CORBA::BAD_PARAM (TAO_OMG_VMCID | 27,
- CORBA::COMPLETED_NO));
- else if (ACE_OS_String::strlen (id) == 0)
- ACE_THROW (CORBA::BAD_PARAM (TAO_OMG_VMCID | 27,
- CORBA::COMPLETED_NO));
-
- if (CORBA::is_nil (obj))
+ if (id == 0 || ACE_OS_String::strlen (id) == 0)
+ ACE_THROW (CORBA::ORB::InvalidName ());
+ else if (CORBA::is_nil (obj))
ACE_THROW (CORBA::BAD_PARAM (TAO_OMG_VMCID | 27,
CORBA::COMPLETED_NO));
@@ -51,7 +47,7 @@ TAO_Object_Ref_Table::register_initial_reference (
"the ORB\n",
id));
- ACE_THROW (CORBA::INV_OBJREF ());
+ ACE_THROW (CORBA::ORB::InvalidName ());
}
if (result == -1)
diff --git a/TAO/tao/debug.h b/TAO/tao/debug.h
index c943ed92ea0..10ce93a469d 100644
--- a/TAO/tao/debug.h
+++ b/TAO/tao/debug.h
@@ -1,5 +1,4 @@
-
-// This may look like C, but it's really -*- C++ -*-
+// -*- C++ -*-
//=============================================================================
/**
@@ -7,10 +6,7 @@
*
* $Id$
*
- * debug/trace support.
- *
- *
- * @author Copyright 1994-1995 by Sun Microsystems Inc.
+ * @author DOC Group - Wash U and UCI
*/
//=============================================================================
@@ -19,7 +15,7 @@
#define TAO_DEBUG_H
#include "ace/pre.h"
-#include "tao/corbafwd.h"
+#include "tao/TAO_Export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
@@ -32,10 +28,10 @@
// such as process initialization. They're treated as immutable.
// 0 to ??; higher == more
-extern TAO_Export u_int TAO_debug_level;
+extern TAO_Export unsigned int TAO_debug_level;
// debug messages on (1) or off (0)
-extern TAO_Export u_int TAO_orbdebug;
+extern TAO_Export unsigned int TAO_orbdebug;
#include "ace/post.h"
#endif /* TAO_DEBUG_H */