mark and range push aliases

[ROCm/roctracer commit: 7b779f8409]
Este commit está contenido en:
Evgeny
2019-09-13 15:58:40 -05:00
padre b1d33ba719
commit efe3523ac4
+2
Ver fichero
@@ -56,6 +56,7 @@ const char* roctracer_error_string();
// A marker created by given ASCII massage
void roctxMarkA(const char* message);
void roctxMark(const char* message) { return roctxMarkA(message); }
////////////////////////////////////////////////////////////////////////////////
// Ranges annotating API
@@ -63,6 +64,7 @@ void roctxMarkA(const char* message);
// Returns the 0 based level of a nested range being started by given message associated to this range.
// A negative value is returned on the error.
int roctxRangePushA(const char* message);
int roctxRangePush(const char* message) { return roctxRangePushA(message); }
// Marks the end of a nested range.
// A negative value is returned on the error.