diff --git a/projects/roctracer/inc/roctx.h b/projects/roctracer/inc/roctx.h index fd1686edcf..55baa4c0ae 100644 --- a/projects/roctracer/inc/roctx.h +++ b/projects/roctracer/inc/roctx.h @@ -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.