summaryrefslogtreecommitdiff
path: root/TAO/tao
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-10-28 11:02:13 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-10-28 11:02:13 +0100
commitb2f8f77f82ba9b35adb764b18bf89e23ce5b63de (patch)
tree83e86dda3568b2a3ac4298245ea7611a1d4484dd /TAO/tao
parent9c2821704d3f5919de4cc6d1612ceef77dfc85b6 (diff)
downloadATCD-b2f8f77f82ba9b35adb764b18bf89e23ce5b63de.tar.gz
Layout and typo changes
Diffstat (limited to 'TAO/tao')
-rw-r--r--TAO/tao/CSD_ThreadPool/CSD_TP_Synch_Helper.h3
-rw-r--r--TAO/tao/CSD_ThreadPool/CSD_TP_Synch_Helper.inl4
-rw-r--r--TAO/tao/ORB_Core.h2
3 files changed, 1 insertions, 8 deletions
diff --git a/TAO/tao/CSD_ThreadPool/CSD_TP_Synch_Helper.h b/TAO/tao/CSD_ThreadPool/CSD_TP_Synch_Helper.h
index 73597bdd60f..d4664257a1c 100644
--- a/TAO/tao/CSD_ThreadPool/CSD_TP_Synch_Helper.h
+++ b/TAO/tao/CSD_ThreadPool/CSD_TP_Synch_Helper.h
@@ -41,7 +41,6 @@ namespace TAO
class TAO_CSD_TP_Export TP_Synch_Helper
{
public:
-
/// Constructor. Sets initial state to PENDING.
TP_Synch_Helper();
@@ -63,7 +62,6 @@ namespace TAO
/// wait_while_pending() to unblock.
void cancelled();
-
private:
/// Enumeration Type for all possible states of this helper object.
enum HelperState
@@ -89,7 +87,6 @@ namespace TAO
/// state is something other than the PENDING state.
ConditionType condition_;
};
-
}
}
diff --git a/TAO/tao/CSD_ThreadPool/CSD_TP_Synch_Helper.inl b/TAO/tao/CSD_ThreadPool/CSD_TP_Synch_Helper.inl
index adf5c1b1bc3..05930380a53 100644
--- a/TAO/tao/CSD_ThreadPool/CSD_TP_Synch_Helper.inl
+++ b/TAO/tao/CSD_ThreadPool/CSD_TP_Synch_Helper.inl
@@ -10,13 +10,11 @@ TAO::CSD::TP_Synch_Helper::TP_Synch_Helper()
{
}
-
ACE_INLINE
TAO::CSD::TP_Synch_Helper::~TP_Synch_Helper()
{
}
-
ACE_INLINE
bool
TAO::CSD::TP_Synch_Helper::wait_while_pending()
@@ -31,7 +29,6 @@ TAO::CSD::TP_Synch_Helper::wait_while_pending()
return (this->state_ == DISPATCHED);
}
-
ACE_INLINE
void
TAO::CSD::TP_Synch_Helper::dispatched()
@@ -41,7 +38,6 @@ TAO::CSD::TP_Synch_Helper::dispatched()
this->condition_.signal();
}
-
ACE_INLINE
void
TAO::CSD::TP_Synch_Helper::cancelled()
diff --git a/TAO/tao/ORB_Core.h b/TAO/tao/ORB_Core.h
index f29cd02430d..4437dc95601 100644
--- a/TAO/tao/ORB_Core.h
+++ b/TAO/tao/ORB_Core.h
@@ -602,7 +602,7 @@ public:
CORBA::PolicyList *policy_list);
/// Factory method that create the "right" Stub depending on
- /// wheather RTCORBA is loaded or not. The factory used to create
+ /// whether RTCORBA is loaded or not. The factory used to create
/// the stub, is loaded at ORB initialization, and its type depends
/// on the fact that RTCORBA is being used or not.
TAO_Stub *create_stub (const char *repository_id,