summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/sys/windows
diff options
context:
space:
mode:
authorTed Ross <tross@apache.org>2009-02-24 14:15:28 +0000
committerTed Ross <tross@apache.org>2009-02-24 14:15:28 +0000
commit1b3a5d652c92cf5b091964110f4ba1251acbf9f4 (patch)
tree31bde11f895d8750a67b6a43c5fe4aa6578ac308 /cpp/src/qpid/sys/windows
parent29f3702dedf1753f350a412a6c026df72caa8534 (diff)
downloadqpid-python-1b3a5d652c92cf5b091964110f4ba1251acbf9f4.tar.gz
QPID-1676 - Added client process name and pid to connection object for management.
Supported in C++, Python, and Ruby clients. Still needs to be added to the Java clients. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@747389 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/sys/windows')
-rwxr-xr-xcpp/src/qpid/sys/windows/SystemInfo.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/cpp/src/qpid/sys/windows/SystemInfo.cpp b/cpp/src/qpid/sys/windows/SystemInfo.cpp
index b887cac58b..dc5c56b6fb 100755
--- a/cpp/src/qpid/sys/windows/SystemInfo.cpp
+++ b/cpp/src/qpid/sys/windows/SystemInfo.cpp
@@ -155,6 +155,25 @@ void SystemInfo::getSystemId (std::string &osName,
machine = "unknown";
break;
}
+
+uint32_t SystemInfo::getProcessId()
+{
+ // TODO: Provide Windows implementation
+ return 0;
+}
+
+uint32_t SystemInfo::getParentProcessId()
+{
+ // TODO: Provide Windows implementation
+ return 0;
+}
+
+std::string SystemInfo::getProcessName()
+{
+ // TODO: Provide Windows implementation
+ return std::string();
+}
+
}
}} // namespace qpid::sys