mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 01:35:20 +08:00
Setup dispatch table with debug tools functions
Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
df1e7792c6
commit
0b2022cf85
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 2020 Intel Corporation
|
||||
* Copyright (C) 2020-2021 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
@@ -68,4 +68,41 @@ zetDebugWriteMemory(
|
||||
size_t size,
|
||||
const void *buffer) {
|
||||
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
|
||||
}
|
||||
|
||||
ZE_APIEXPORT ze_result_t ZE_APICALL
|
||||
zetDebugAcknowledgeEvent(
|
||||
zet_debug_session_handle_t hDebug,
|
||||
const zet_debug_event_t *event) {
|
||||
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
|
||||
}
|
||||
|
||||
ZE_APIEXPORT ze_result_t ZE_APICALL
|
||||
zetDebugGetRegisterSetProperties(
|
||||
zet_device_handle_t hDevice,
|
||||
uint32_t *pCount,
|
||||
zet_debug_regset_properties_t *pRegisterSetProperties) {
|
||||
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
|
||||
}
|
||||
|
||||
ZE_APIEXPORT ze_result_t ZE_APICALL
|
||||
zetDebugReadRegisters(
|
||||
zet_debug_session_handle_t hDebug,
|
||||
ze_device_thread_t thread,
|
||||
zet_debug_regset_type_t type,
|
||||
uint32_t start,
|
||||
uint32_t count,
|
||||
void *pRegisterValues) {
|
||||
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
|
||||
}
|
||||
|
||||
ZE_APIEXPORT ze_result_t ZE_APICALL
|
||||
zetDebugWriteRegisters(
|
||||
zet_debug_session_handle_t hDebug,
|
||||
ze_device_thread_t thread,
|
||||
zet_debug_regset_type_t type,
|
||||
uint32_t start,
|
||||
uint32_t count,
|
||||
void *pRegisterValues) {
|
||||
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
|
||||
}
|
||||
Reference in New Issue
Block a user