[Openmp-commits] [openmp] r242155 - Rename OMPT placeholder type names to be in the OMPT name space

Jonathan Peyton jonathan.l.peyton at intel.com
Tue Jul 14 08:42:03 PDT 2015


Author: jlpeyton
Date: Tue Jul 14 10:42:03 2015
New Revision: 242155

URL: http://llvm.org/viewvc/llvm-project?rev=242155&view=rev
Log:
Rename OMPT placeholder type names to be in the OMPT name space

r242052 changed the name of OMPT placeholder functions to move them from
the omp_ name space to the ompt_ name space. This patch moves the names of the
types of these functions into the OMPT name space as well.

Patch by John Mellor-Crummey

Differential Revision: http://reviews.llvm.org/D11171

Modified:
    openmp/trunk/runtime/src/include/30/ompt.h.var
    openmp/trunk/runtime/src/include/40/ompt.h.var
    openmp/trunk/runtime/src/include/41/ompt.h.var

Modified: openmp/trunk/runtime/src/include/30/ompt.h.var
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/include/30/ompt.h.var?rev=242155&r1=242154&r2=242155&view=diff
==============================================================================
--- openmp/trunk/runtime/src/include/30/ompt.h.var (original)
+++ openmp/trunk/runtime/src/include/30/ompt.h.var Tue Jul 14 10:42:03 2015
@@ -376,27 +376,27 @@ OMPT_API_FUNCTION(ompt_frame_t *, ompt_g
  ***************************************************************************/
 
 /* idle */
-OMPT_API_FUNCTION(void, omp_idle, (
+OMPT_API_FUNCTION(void, ompt_idle, (
     void
 ));
 
 /* overhead */
-OMPT_API_FUNCTION(void, omp_overhead, (
+OMPT_API_FUNCTION(void, ompt_overhead, (
     void
 ));
 
 /* barrier wait */
-OMPT_API_FUNCTION(void, omp_barrier_wait, (
+OMPT_API_FUNCTION(void, ompt_barrier_wait, (
     void
 ));
 
 /* task wait */
-OMPT_API_FUNCTION(void, omp_task_wait, (
+OMPT_API_FUNCTION(void, ompt_task_wait, (
     void
 ));
 
 /* mutex wait */
-OMPT_API_FUNCTION(void, omp_mutex_wait, (
+OMPT_API_FUNCTION(void, ompt_mutex_wait, (
     void
 ));
 

Modified: openmp/trunk/runtime/src/include/40/ompt.h.var
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/include/40/ompt.h.var?rev=242155&r1=242154&r2=242155&view=diff
==============================================================================
--- openmp/trunk/runtime/src/include/40/ompt.h.var (original)
+++ openmp/trunk/runtime/src/include/40/ompt.h.var Tue Jul 14 10:42:03 2015
@@ -376,27 +376,27 @@ OMPT_API_FUNCTION(ompt_frame_t *, ompt_g
  ***************************************************************************/
 
 /* idle */
-OMPT_API_FUNCTION(void, omp_idle, (
+OMPT_API_FUNCTION(void, ompt_idle, (
     void
 ));
 
 /* overhead */
-OMPT_API_FUNCTION(void, omp_overhead, (
+OMPT_API_FUNCTION(void, ompt_overhead, (
     void
 ));
 
 /* barrier wait */
-OMPT_API_FUNCTION(void, omp_barrier_wait, (
+OMPT_API_FUNCTION(void, ompt_barrier_wait, (
     void
 ));
 
 /* task wait */
-OMPT_API_FUNCTION(void, omp_task_wait, (
+OMPT_API_FUNCTION(void, ompt_task_wait, (
     void
 ));
 
 /* mutex wait */
-OMPT_API_FUNCTION(void, omp_mutex_wait, (
+OMPT_API_FUNCTION(void, ompt_mutex_wait, (
     void
 ));
 

Modified: openmp/trunk/runtime/src/include/41/ompt.h.var
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/include/41/ompt.h.var?rev=242155&r1=242154&r2=242155&view=diff
==============================================================================
--- openmp/trunk/runtime/src/include/41/ompt.h.var (original)
+++ openmp/trunk/runtime/src/include/41/ompt.h.var Tue Jul 14 10:42:03 2015
@@ -376,27 +376,27 @@ OMPT_API_FUNCTION(ompt_frame_t *, ompt_g
  ***************************************************************************/
 
 /* idle */
-OMPT_API_FUNCTION(void, omp_idle, (
+OMPT_API_FUNCTION(void, ompt_idle, (
     void
 ));
 
 /* overhead */
-OMPT_API_FUNCTION(void, omp_overhead, (
+OMPT_API_FUNCTION(void, ompt_overhead, (
     void
 ));
 
 /* barrier wait */
-OMPT_API_FUNCTION(void, omp_barrier_wait, (
+OMPT_API_FUNCTION(void, ompt_barrier_wait, (
     void
 ));
 
 /* task wait */
-OMPT_API_FUNCTION(void, omp_task_wait, (
+OMPT_API_FUNCTION(void, ompt_task_wait, (
     void
 ));
 
 /* mutex wait */
-OMPT_API_FUNCTION(void, omp_mutex_wait, (
+OMPT_API_FUNCTION(void, ompt_mutex_wait, (
     void
 ));
 





More information about the Openmp-commits mailing list