mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

Change-Id: I93a8ca95082f6ddb48adffe33145568f32d77418 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
20 lines
409 B
C++
20 lines
409 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/os_interface/debug_env_reader.h"
|
|
|
|
namespace NEO {
|
|
|
|
SettingsReader *SettingsReader::createOsReader(bool userScope, const std::string ®Key) {
|
|
return new EnvironmentVariableReader;
|
|
}
|
|
|
|
char *SettingsReader::getenv(const char *settingName) {
|
|
return ::getenv(settingName);
|
|
}
|
|
} // namespace NEO
|