summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/sys/windows/SystemInfo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/qpid/sys/windows/SystemInfo.cpp')
-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