diff options
author | Benoit Foucher <benoit@zeroc.com> | 2009-12-08 14:37:44 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2009-12-08 14:37:44 +0100 |
commit | 33a83ee4f83e9c3ed820f90122d8106dc9b41e74 (patch) | |
tree | 246b83b711150264ff79d1433b45e534b8a765d6 /cpp/src/IceGrid/NodeI.cpp | |
parent | Fixes for the plugin demo (diff) | |
download | ice-33a83ee4f83e9c3ed820f90122d8106dc9b41e74.tar.bz2 ice-33a83ee4f83e9c3ed820f90122d8106dc9b41e74.tar.xz ice-33a83ee4f83e9c3ed820f90122d8106dc9b41e74.zip |
Fix for bug 3234 - Initial support for getting processor socket count with IceGrid
Diffstat (limited to 'cpp/src/IceGrid/NodeI.cpp')
-rw-r--r-- | cpp/src/IceGrid/NodeI.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cpp/src/IceGrid/NodeI.cpp b/cpp/src/IceGrid/NodeI.cpp index 432688aa925..7e5659771b1 100644 --- a/cpp/src/IceGrid/NodeI.cpp +++ b/cpp/src/IceGrid/NodeI.cpp @@ -813,6 +813,12 @@ NodeI::getLoad(const Ice::Current&) const return _platform.getLoadInfo(); } +int +NodeI::getProcessorSocketCount(const Ice::Current&) const +{ + return _platform.getProcessorSocketCount(); +} + void NodeI::shutdown(const Ice::Current&) const { |