SWDEV-465520: RHEL9 toolchain doesnt seem to support experimental filesystem

Change-Id: I6b1e7f42c49b1c7af412c0b68851724861c9970a


[ROCm/rocprofiler commit: 1e69b3e2f6]
This commit is contained in:
gobhardw
2024-06-04 15:02:51 +05:30
committed by Ammar Elwazir
parent 607cfb9ee1
commit a67f4fdd93
26 changed files with 125 additions and 63 deletions
@@ -24,7 +24,6 @@
#include <sys/syscall.h>
#include <unistd.h>
#include <experimental/filesystem>
#include <atomic>
#include <cassert>
#include <optional>
@@ -36,8 +35,9 @@
#include "src/utils/helper.h"
#include "src/utils/logger.h"
#include "src/core/memory/generic_buffer.h"
#include "src/utils/filesystem.hpp"
namespace fs = std::experimental::filesystem;
namespace fs = rocprofiler::common::filesystem;
#define ASSERTM(exp, msg) assert(((void)msg, exp))
extern std::mutex sessions_pending_signal_lock;