From efe3523ac45b01ac0a6ca16bd5bd2f2b7f691b86 Mon Sep 17 00:00:00 2001 From: Evgeny Date: Fri, 13 Sep 2019 15:58:40 -0500 Subject: [PATCH] mark and range push aliases [ROCm/roctracer commit: 7b779f840957a7731b1ab26a8fa85d93370ffea7] --- projects/roctracer/inc/roctx.h | 2 ++ 1 file changed, 2 insertions(+) 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.