summaryrefslogtreecommitdiff
path: root/ACE/ace/Service_Gestalt.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2009-02-26 12:26:16 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2009-02-26 12:26:16 +0000
commit2b7b6703496c2592614d8638f8b0f1d2a0d89147 (patch)
treea9eeee7c3f879f8cc32766ec5ebd1a60f09d32f3 /ACE/ace/Service_Gestalt.h
parent7075abafd0955937ad860d2dccaa3cf61462bd4b (diff)
downloadATCD-2b7b6703496c2592614d8638f8b0f1d2a0d89147.tar.gz
Thu Feb 26 12:26:15 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Addr.cpp: Layout change * ace/Event_Handler.h: * ace/Free_List.h: * ace/Logging_Strategy.h: * ace/Process_Manager.h: * ace/Select_Reactor_Base.h: * ace/Select_Reactor_T.h: * ace/SSL/SSL_SOCK_Acceptor.inl: * ace/Timer_Heap_T.h: * ace/Timer_Wheel_T.h: Doxygen change * ace/Service_Config.cpp: * ace/Service_Gestalt.cpp: * ace/Service_Gestalt.h: Changed the default value of the logger_key argument to open to 0. That way we can easier check if the user has overridden the default. Also check the logger_key in Service_Gestalt, so that it can be set through TAO. This fixes bugzilla 3597
Diffstat (limited to 'ACE/ace/Service_Gestalt.h')
-rw-r--r--ACE/ace/Service_Gestalt.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/ace/Service_Gestalt.h b/ACE/ace/Service_Gestalt.h
index 569269c614a..191704e76b9 100644
--- a/ACE/ace/Service_Gestalt.h
+++ b/ACE/ace/Service_Gestalt.h
@@ -116,7 +116,7 @@ public:
* ACE_Log_Msg::priority_mask appropriately.
*/
int open (const ACE_TCHAR program_name[],
- const ACE_TCHAR *logger_key = ACE_DEFAULT_LOGGER_KEY,
+ const ACE_TCHAR *logger_key = 0,
bool ignore_static_svcs = true,
bool ignore_default_svc_conf_file = false,
bool ignore_debug_flag = false);
@@ -173,7 +173,7 @@ public:
*/
int open (int argc,
ACE_TCHAR *argv[],
- const ACE_TCHAR *logger_key = ACE_DEFAULT_LOGGER_KEY,
+ const ACE_TCHAR *logger_key = 0,
bool ignore_static_svcs = true,
bool ignore_default_svc_conf_file = false,
bool ignore_debug_flag = false);
@@ -337,7 +337,7 @@ protected:
* errors that occurred on failure and 0 otherwise.
*/
int open_i (const ACE_TCHAR program_name[],
- const ACE_TCHAR *logger_key = ACE_DEFAULT_LOGGER_KEY,
+ const ACE_TCHAR *logger_key = 0,
bool ignore_static_svcs = true,
bool ignore_default_svc_conf_file = false,
bool ignore_debug_flag = false);