mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-26 15:03:02 +08:00
sync xe_drm.h for debugger to 1d2144ed from https://gitlab.freedesktop.org/miku/kernel/-/tree/eudebug-dev Related-to: NEO-8402 Signed-off-by: Brandon Yates <brandon.yates@intel.com>
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
|