mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 12:23:05 +08:00
21 lines
562 B
C
21 lines
562 B
C
|
|
/*
|
||
|
|
* Copyright (C) 2023 Intel Corporation
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include "level_zero/tools/source/debug/debug_session.h"
|
||
|
|
#include "level_zero/tools/source/debug/debug_session_imp.h"
|
||
|
|
#include "level_zero/tools/source/debug/linux/debug_session.h"
|
||
|
|
#include "level_zero/tools/source/debug/linux/debug_session_factory.h"
|
||
|
|
|
||
|
|
namespace L0 {
|
||
|
|
|
||
|
|
struct DebugSessionLinuxXe : DebugSessionLinux {
|
||
|
|
|
||
|
|
static DebugSession *createLinuxSession(const zet_debug_config_t &config, Device *device, ze_result_t &result, bool isRootAttach);
|
||
|
|
};
|
||
|
|
|
||
|
|
} // namespace L0
|