1 /*
2  * Copyright (C) 2020-2021 Intel Corporation
3  *
4  * SPDX-License-Identifier: MIT
5  *
6  */
7 
8 #include "shared/source/device/device.h"
9 #include "shared/source/helpers/hw_helper.h"
10 #include "shared/source/kernel/debug_data.h"
11 
12 #include "level_zero/core/source/debugger/debugger_l0.h"
13 
14 namespace L0 {
initDebuggingInOs(NEO::OSInterface * osInterface)15 bool DebuggerL0::initDebuggingInOs(NEO::OSInterface *osInterface) {
16     return false;
17 }
18 
registerElf(NEO::DebugData * debugData,NEO::GraphicsAllocation * isaAllocation)19 void DebuggerL0::registerElf(NEO::DebugData *debugData, NEO::GraphicsAllocation *isaAllocation) {
20 }
21 
22 } // namespace L0
23