mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-23 11:03:02 +08:00
Related-To: NEO-3832 Change-Id: I9c97a20a6a611118eb14348a8c6960115a20777d Signed-off-by: Jobczyk, Lukasz <lukasz.jobczyk@intel.com> Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
33 lines
530 B
C++
33 lines
530 B
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "os_interface.h"
|
|
|
|
namespace NEO {
|
|
|
|
bool OSInterface::osEnabled64kbPages = false;
|
|
|
|
OSInterface::OSInterface() {
|
|
osInterfaceImpl = new OSInterfaceImpl();
|
|
}
|
|
|
|
OSInterface::~OSInterface() {
|
|
delete osInterfaceImpl;
|
|
}
|
|
|
|
bool OSInterface::are64kbPagesEnabled() {
|
|
return osEnabled64kbPages;
|
|
}
|
|
|
|
uint32_t OSInterface::getDeviceHandle() const {
|
|
return 0;
|
|
}
|
|
|
|
void OSInterface::setGmmInputArgs(void *args) {}
|
|
|
|
} // namespace NEO
|