diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2009-04-24 13:55:37 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2009-04-24 13:55:37 -0230 |
commit | b7781c854fc8dc9c02f8abe363c46b8f4f28e859 (patch) | |
tree | 4915ec5588dc04bc8f7f99740d1062e4a1898296 /cpp/src/IceGrid/PlatformInfo.cpp | |
parent | Bug 3811 - unsubstitued verion strings in READMES (diff) | |
download | ice-b7781c854fc8dc9c02f8abe363c46b8f4f28e859.tar.bz2 ice-b7781c854fc8dc9c02f8abe363c46b8f4f28e859.tar.xz ice-b7781c854fc8dc9c02f8abe363c46b8f4f28e859.zip |
Bug 2812 - add abilty to name thread
Diffstat (limited to 'cpp/src/IceGrid/PlatformInfo.cpp')
-rw-r--r-- | cpp/src/IceGrid/PlatformInfo.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/PlatformInfo.cpp b/cpp/src/IceGrid/PlatformInfo.cpp index d8c23038fc8..e811cfba5c9 100644 --- a/cpp/src/IceGrid/PlatformInfo.cpp +++ b/cpp/src/IceGrid/PlatformInfo.cpp @@ -80,7 +80,9 @@ class UpdateUtilizationAverageThread : public IceUtil::Thread { public: - UpdateUtilizationAverageThread(PlatformInfo& platform) : _platform(platform) + UpdateUtilizationAverageThread(PlatformInfo& platform) : + IceUtil::Thread("IceGrid update utilization average thread"), + _platform(platform) { } |