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

Change-Id: Ib64ee4d65a5212af7a4a95f80173b7ff8382340f


[ROCm/clr commit: 7631ba8b4d]
이 커밋은 다음에 포함됨:
Ioannis Assiouras
2022-12-02 17:22:04 +00:00
부모 0efc782e69
커밋 57b1f696ec
5개의 변경된 파일16개의 추가작업 그리고 4개의 파일을 삭제
+2 -1
파일 보기
@@ -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");
}
}