roctracer
4.1.60101
|
Operations to output trace data. More...
Functions | |
ROCTRACER_EXPORT int | roctracer_plugin_write_callback_record (const roctracer_record_t *record, const void *callback_data) |
Report a single callback trace data. More... | |
ROCTRACER_EXPORT int | roctracer_plugin_write_activity_records (const roctracer_record_t *begin, const roctracer_record_t *end) |
Report a range of activity trace data. More... | |
Operations to output trace data.
ROCTRACER_EXPORT int roctracer_plugin_write_activity_records | ( | const roctracer_record_t * | begin, |
const roctracer_record_t * | end | ||
) |
Report a range of activity trace data.
Reports a range of primarily domain independent trace data. The range is specified by a pointer to the first record and a pointer to one past the last record. roctracer_next_record is used to iterate the range in forward order.
[in] | begin | Pointer to the first record. |
[in] | end | Pointer to one past the last record. |
ROCTRACER_EXPORT int roctracer_plugin_write_callback_record | ( | const roctracer_record_t * | record, |
const void * | callback_data | ||
) |
Report a single callback trace data.
[in] | record | Primarily domain independent trace data. |
[in] | callback_data | Domain specific trace data. The type of this argument depends on the values of record.domain . |