Check to force tools to initialize the ctx id to zero. (#1135)

* Check to force tool to initialize the ctx id to zero.

* initialize rocprofiler_context_id_t with 0 in units tests

* changelog

---------

Co-authored-by: Gopesh Bhardwaj <gopesh.bhardwaj@amd.com>
Этот коммит содержится в:
venkat1361
2024-10-22 07:39:25 -05:00
коммит произвёл GitHub
родитель a92fa8f071
Коммит 3f91d90bbc
36 изменённых файлов: 66 добавлений и 61 удалений
+1 -1
Просмотреть файл
@@ -87,7 +87,7 @@ int
tool_init(rocprofiler_client_finalize_t /* fini_func */, void* tool_data)
{
Callbacks::callbacks_init();
static rocprofiler_context_id_t client_ctx = {};
static rocprofiler_context_id_t client_ctx = {0};
ROCPROFILER_CALL(rocprofiler_create_context(&client_ctx), "context creation");