SWDEV-463865 - symbol renamings to prevent conflicts in static build

Change-Id: Id7fbb638c1088c23df52fee877cd790d637b1ffb
This commit is contained in:
Ioannis Assiouras
2024-06-04 18:33:00 +01:00
والد ecff928284
کامیت b8c2ac4de4
17فایلهای تغییر یافته به همراه45 افزوده شده و 45 حذف شده
+3 -3
مشاهده پرونده
@@ -150,8 +150,8 @@ bool Event::setStatus(int32_t status, uint64_t timeStamp) {
releaseResources();
}
if (profilingInfo().enabled_ && activity_prof::IsEnabled(OP_ID_DISPATCH)) {
activity_prof::ReportActivity(command());
if (profilingInfo().enabled_ && amd::activity_prof::IsEnabled(OP_ID_DISPATCH)) {
amd::activity_prof::ReportActivity(command());
}
// Broadcast all the waiters.
@@ -303,7 +303,7 @@ const Event::EventWaitList Event::nullWaitList(0);
Command::Command(HostQueue& queue, cl_command_type type, const EventWaitList& eventWaitList,
uint32_t commandWaitBits, const Event* waitingEvent)
: Event(queue,
activity_prof::IsEnabled(activity_prof::OperationId(type)) ||
amd::activity_prof::IsEnabled(amd::activity_prof::OperationId(type)) ||
queue.properties().test(CL_QUEUE_PROFILING_ENABLE) ||
Agent::shouldPostEventEvents()),
queue_(&queue),