|
17 | 17 | #include "rmt_process_map.h"
|
18 | 18 | #include "rmt_process_start_info.h"
|
19 | 19 | #include "rmt_rdf_system_info.h"
|
| 20 | +#include "rmt_resource_userdata.h" |
20 | 21 | #include "rmt_segment_info.h"
|
21 | 22 | #include "rmt_token_heap.h"
|
22 | 23 | #include "rmt_types.h"
|
@@ -96,6 +97,7 @@ typedef struct RmtDataSet
|
96 | 97 |
|
97 | 98 | bool is_rdf_trace; ///< A flag that indicates, if true, that the trace is RDF format. Otherwise, false.
|
98 | 99 | bool is_resource_name_processing_complete; ///< A flag that indicates, if true, that resource names have been processed for the loaded memory trace.
|
| 100 | + bool contains_correlation_tokens; ///< A flag that indicates, if true, that the trace contain correlation tokens. |
99 | 101 | uint32_t active_gpu; ///< The active GPU used by the application process that was captured.
|
100 | 102 | RmtSnapshotWriterHandle snapshot_writer_handle; ///< The object responsible for writing snapshots to the trace file.
|
101 | 103 | } RmtDataSet;
|
@@ -253,19 +255,6 @@ RmtErrorCode RmtDataSetRenameSnapshot(RmtDataSet* data_set, const int32_t snapsh
|
253 | 255 | /// The series index.
|
254 | 256 | int32_t RmtDataSetGetSeriesIndexForTimestamp(RmtDataSet* data_set, uint64_t timestamp);
|
255 | 257 |
|
256 |
| -/// Retrieve the resource name associated with a resource. |
257 |
| -/// |
258 |
| -/// @param [in] resource_id The resource identifier for the name to be retrieved. |
259 |
| -/// @param [out] out_resource_name A pointer to the resource name. |
260 |
| -/// |
261 |
| -/// @returns |
262 |
| -/// kRmtOk The operation completed successfully. |
263 |
| -/// @retval |
264 |
| -/// kRmtErrorInvalidPointer The operation failed due to <c><i>out_resource_name</i></c> being an invalid pointer. |
265 |
| -/// @retval |
266 |
| -/// kRmtErrorResourceNotFound A resource name could not be found for the <c><i>resource_id</i></c> specified. |
267 |
| -RmtErrorCode RmtDataSetGetResourceName(const RmtResourceIdentifier resource_id, const char** out_resource_name); |
268 |
| - |
269 | 258 | #ifdef __cplusplus
|
270 | 259 | }
|
271 | 260 | #endif // #ifdef __cplusplus
|
|
0 commit comments