summaryrefslogtreecommitdiff
path: root/netsvcs
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-06-29 14:54:37 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-06-29 14:54:37 +0000
commit8075c70fb5cda1ac069c1e073d05ab82c4cb2de8 (patch)
tree867a8ad352c302efa37473e525304766723bbf8f /netsvcs
parenta0a6e5d9045188237da704acf3583288cce3d95f (diff)
downloadATCD-8075c70fb5cda1ac069c1e073d05ab82c4cb2de8.tar.gz
reordered initializers to match declaration order
Diffstat (limited to 'netsvcs')
-rw-r--r--netsvcs/lib/Token_Handler.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/netsvcs/lib/Token_Handler.cpp b/netsvcs/lib/Token_Handler.cpp
index 08ede9c2d02..cce62947988 100644
--- a/netsvcs/lib/Token_Handler.cpp
+++ b/netsvcs/lib/Token_Handler.cpp
@@ -507,15 +507,15 @@ ACE_Token_Handler::abandon (int send_error)
ACE_TS_Mutex::ACE_TS_Mutex (const char *name,
ACE_Token_Handler *th)
-: th_ (th),
- ACE_Local_Mutex (name, 0, 1) // The 1 is debug.
+: ACE_Local_Mutex (name, 0, 1), // The 1 is debug.
+ th_ (th)
{
ACE_TRACE ("ACE_TS_Mutex::ACE_TS_Mutex");
}
ACE_TS_Mutex::ACE_TS_Mutex (const ACE_TS_Mutex &m)
-: th_ (m.th_),
- ACE_Local_Mutex (m)
+: ACE_Local_Mutex (m),
+ th_ (m.th_)
{
ACE_TRACE ("ACE_TS_Mutex::ACE_TS_Mutex");
this->open (m.name (), m.ignore_deadlock_, m.debug_);
@@ -551,15 +551,15 @@ ACE_TS_Mutex::clone (void) const
ACE_TS_RLock::ACE_TS_RLock (const char *name,
ACE_Token_Handler *th)
-: th_ (th),
- ACE_Local_RLock (name, 0, 1) // The 1 is debug.
+: ACE_Local_RLock (name, 0, 1), // The 1 is debug.
+ th_ (th)
{
ACE_TRACE ("ACE_TS_RLock::ACE_TS_RLock");
}
ACE_TS_RLock::ACE_TS_RLock (const ACE_TS_RLock &r)
-: th_ (r.th_),
- ACE_Local_RLock (r)
+: ACE_Local_RLock (r),
+ th_ (r.th_)
{
ACE_TRACE ("ACE_TS_RLock::ACE_TS_RLock");
this->open (r.name (), r.ignore_deadlock_, r.debug_);
@@ -596,15 +596,15 @@ ACE_TS_RLock::clone (void) const
ACE_TS_WLock::ACE_TS_WLock (const char *name,
ACE_Token_Handler *th)
-: th_ (th),
- ACE_Local_WLock (name, 0, 1) // The 1 is debug.
+: ACE_Local_WLock (name, 0, 1), // The 1 is debug.
+ th_ (th)
{
ACE_TRACE ("ACE_TS_WLock::ACE_TS_WLock");
}
ACE_TS_WLock::ACE_TS_WLock (const ACE_TS_WLock &w)
-: th_ (w.th_),
- ACE_Local_WLock (w)
+: ACE_Local_WLock (w),
+ th_ (w.th_)
{
ACE_TRACE ("ACE_TS_WLock::ACE_TS_WLock");
this->open (w.name (), w.ignore_deadlock_, w.debug_);