From 7b779f840957a7731b1ab26a8fa85d93370ffea7 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 --- inc/roctx.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/inc/roctx.h b/inc/roctx.h index fd1686edcf..55baa4c0ae 100644 --- a/inc/roctx.h +++ b/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.