SWDEV-369548 - Added getProcessId function in Os:: and change log functions to use that.

Change-Id: Ib64ee4d65a5212af7a4a95f80173b7ff8382340f
This commit is contained in:
Ioannis Assiouras
2022-12-02 17:22:04 +00:00
parent 8c582a02ef
commit 7631ba8b4d
5 changed files with 16 additions and 4 deletions
+2 -1
View File
@@ -20,6 +20,7 @@
#include "top.hpp"
#include "utils/flags.hpp"
#include "os/os.hpp"
#include <unordered_map>
#include <string>
@@ -156,7 +157,7 @@ bool Flag::init() {
if (!flagIsDefault(AMD_LOG_LEVEL)) {
if (!flagIsDefault(AMD_LOG_LEVEL_FILE)) {
std::string fileName = AMD_LOG_LEVEL_FILE;
fileName = fileName + "_" + std::to_string(getpid());
fileName = fileName + "_" + std::to_string(Os::getProcessId());
outFile = fopen(fileName.c_str(), "w");
}
}