diff options
author | Benoit Foucher <benoit@zeroc.com> | 2008-01-07 11:24:01 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2008-01-07 11:24:01 +0100 |
commit | 9eaad129369fdc74c1d8ec7c7638776f26ee98db (patch) | |
tree | d9ab5829bd6ae0b8240e6debdf82b67c52b65f60 /cpp/src | |
parent | Fixed bug 2304 (diff) | |
download | ice-9eaad129369fdc74c1d8ec7c7638776f26ee98db.tar.bz2 ice-9eaad129369fdc74c1d8ec7c7638776f26ee98db.tar.xz ice-9eaad129369fdc74c1d8ec7c7638776f26ee98db.zip |
Finished fixes for bug 2132
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Ice/PropertyNames.cpp | 4 | ||||
-rw-r--r-- | cpp/src/Ice/PropertyNames.h | 2 | ||||
-rwxr-xr-x | cpp/src/Ice/Service.cpp | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/Ice/PropertyNames.cpp b/cpp/src/Ice/PropertyNames.cpp index 00636a8f1e3..17e4df91d15 100644 --- a/cpp/src/Ice/PropertyNames.cpp +++ b/cpp/src/Ice/PropertyNames.cpp @@ -7,7 +7,7 @@ // // ********************************************************************** // -// Generated by makeprops.py from file ../config/PropertyNames.xml, Thu Nov 29 17:38:46 2007 +// Generated by makeprops.py from file ../config/PropertyNames.xml, Mon Jan 7 11:13:34 2008 // IMPORTANT: Do not edit this file -- any edits made here will be lost! @@ -73,7 +73,7 @@ const IceInternal::Property IcePropsData[] = IceInternal::Property("Ice.ImplicitContext", false, 0), IceInternal::Property("Ice.InitPlugins", false, 0), IceInternal::Property("Ice.MessageSizeMax", false, 0), - IceInternal::Property("Ice.MonitorConnections", false, 0), + IceInternal::Property("Ice.MonitorConnections", true, 0), IceInternal::Property("Ice.Nohup", false, 0), IceInternal::Property("Ice.NullHandleAbort", false, 0), IceInternal::Property("Ice.Override.Compress", false, 0), diff --git a/cpp/src/Ice/PropertyNames.h b/cpp/src/Ice/PropertyNames.h index 34a3bb3af23..a9c885f395d 100644 --- a/cpp/src/Ice/PropertyNames.h +++ b/cpp/src/Ice/PropertyNames.h @@ -7,7 +7,7 @@ // // ********************************************************************** // -// Generated by makeprops.py from file ../config/PropertyNames.xml, Thu Nov 29 17:38:46 2007 +// Generated by makeprops.py from file ../config/PropertyNames.xml, Mon Jan 7 11:13:34 2008 // IMPORTANT: Do not edit this file -- any edits made here will be lost! diff --git a/cpp/src/Ice/Service.cpp b/cpp/src/Ice/Service.cpp index 28e3f5fa3ab..45a88f9478b 100755 --- a/cpp/src/Ice/Service.cpp +++ b/cpp/src/Ice/Service.cpp @@ -1904,7 +1904,7 @@ Ice::Service::runDaemon(int argc, char* argv[], const InitializationData& initDa // properly. We do this before initializing the communicator because we need to // ensure that signals are initialized before additional threads are created. The // communicator thread pools currently use lazy initialization, but a thread can - // be created if Ice.MonitorConnections is defined. + // be created to monitor connections. // _ctrlCHandler = new IceUtil::CtrlCHandler; |