Rename L0::DebugSession::getRegisterSetPropertiesExp->getRegisterSetProperties

Signed-off-by: Igor Venevtsev <igor.venevtsev@intel.com>
This commit is contained in:
Igor Venevtsev
2021-06-24 13:28:57 +00:00
committed by Compute-Runtime-Automation
parent a3cd475dbf
commit e0a50d3143
3 changed files with 3 additions and 4 deletions

View File

@@ -6,7 +6,7 @@
set(L0_SRCS_TOOLS_DEBUG
${CMAKE_CURRENT_SOURCE_DIR}/debug_session.h
${CMAKE_CURRENT_SOURCE_DIR}${BRANCH_DIR_SUFFIX}/debug_handlers.h
${CMAKE_CURRENT_SOURCE_DIR}/debug_handlers.h
${CMAKE_CURRENT_SOURCE_DIR}${BRANCH_DIR_SUFFIX}/debug_handlers.cpp
)

View File

@@ -10,7 +10,6 @@
#include <level_zero/zet_api.h>
struct _zet_debug_session_handle_t {};
typedef struct _zet_debug_regset_properties_exp_t zet_debug_regset_properties_exp_t;
namespace L0 {
@@ -36,7 +35,7 @@ struct DebugSession : _zet_debug_session_handle_t {
virtual ze_result_t acknowledgeEvent(const zet_debug_event_t *event) = 0;
virtual ze_result_t readRegisters(ze_device_thread_t thread, uint32_t type, uint32_t start, uint32_t count, void *pRegisterValues) = 0;
virtual ze_result_t writeRegisters(ze_device_thread_t thread, uint32_t type, uint32_t start, uint32_t count, void *pRegisterValues) = 0;
virtual ze_result_t getRegisterSetPropertiesExp(uint32_t *pCount, zet_debug_regset_properties_exp_t *pRegisterSetPropertiesExp) = 0;
virtual ze_result_t getRegisterSetProperties(uint32_t *pCount, zet_debug_regset_properties_t *pRegisterSetProperties) = 0;
Device *getConnectedDevice() { return connectedDevice; }