Files
compute-runtime/shared/source/os_interface/linux/os_library_linux.h
Mateusz Jablonski 9c7b3c5e19 fix: correct loading L0 loader functions
on Windows use getModuleHandleA with proper module name
don't load ze_loader.dll from file system

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
2024-10-16 19:53:05 +02:00

30 lines
581 B
C++

/*
* Copyright (C) 2019-2024 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "shared/source/os_interface/os_library.h"
namespace NEO {
namespace Linux {
void adjustLibraryFlags(int &dlopenFlag);
class OsLibrary : public NEO::OsLibrary {
private:
void *handle;
public:
OsLibrary(const OsLibraryCreateProperties &properties);
~OsLibrary() override;
bool isLoaded() override;
void *getProcAddress(const std::string &procName) override;
std::string getFullPath() override;
};
} // namespace Linux
} // namespace NEO