Remove _service from rocprofiler_service_* types (#221)

- this is a continuation of #168 which removed _SERVICE from the ROCPROFILER_SERVICE_ enums
This commit is contained in:
Jonathan R. Madsen
2023-11-16 04:44:50 -06:00
committed by GitHub
parent cf5e4b4b1b
commit ca296ff22b
16 changed files with 215 additions and 222 deletions
+2 -2
View File
@@ -82,9 +82,9 @@ struct source_location
};
using call_stack_t = std::vector<source_location>;
using callback_kind_names_t = std::map<rocprofiler_service_callback_tracing_kind_t, const char*>;
using callback_kind_names_t = std::map<rocprofiler_callback_tracing_kind_t, const char*>;
using callback_kind_operation_names_t =
std::map<rocprofiler_service_callback_tracing_kind_t, std::map<uint32_t, const char*>>;
std::map<rocprofiler_callback_tracing_kind_t, std::map<uint32_t, const char*>>;
using wrap_count_t = std::pair<source_location, size_t>;
rocprofiler_client_id_t* client_id = nullptr;