diff options
| author | Joachim Protze <protze@itc.rwth-aachen.de> | 2018-05-28 08:16:08 +0000 |
|---|---|---|
| committer | Joachim Protze <protze@itc.rwth-aachen.de> | 2018-05-28 08:16:08 +0000 |
| commit | 406361330b4f5a070c7f5be97054cd72d935962c (patch) | |
| tree | 557ebb59bfeba5363d9e6ea9947281076cae0b11 /openmp/runtime/src/include | |
| parent | c5836064bba929ebff211b76c3f377f2a5e5f78a (diff) | |
| download | bcm5719-llvm-406361330b4f5a070c7f5be97054cd72d935962c.tar.gz bcm5719-llvm-406361330b4f5a070c7f5be97054cd72d935962c.zip | |
[OMPT] Rename ompt_wait_id to omp_wait_id
Rename ompt_wait_id to omp_wait_id, as defined in the spec.
Differential Revision: https://reviews.llvm.org/D46530
llvm-svn: 333368
Diffstat (limited to 'openmp/runtime/src/include')
| -rw-r--r-- | openmp/runtime/src/include/50/ompt.h.var | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/openmp/runtime/src/include/50/ompt.h.var b/openmp/runtime/src/include/50/ompt.h.var index 4ffdc45b254..21b4c4635c0 100644 --- a/openmp/runtime/src/include/50/ompt.h.var +++ b/openmp/runtime/src/include/50/ompt.h.var @@ -173,8 +173,8 @@ typedef union ompt_data_t { static const ompt_data_t ompt_data_none = {0}; -typedef uint64_t ompt_wait_id_t; -static const ompt_wait_id_t ompt_wait_id_none = 0; +typedef uint64_t omp_wait_id_t; +static const omp_wait_id_t omp_wait_id_none = 0; typedef void ompt_device_t; @@ -287,7 +287,7 @@ typedef void (*ompt_callback_thread_end_t) ( ); typedef void (*ompt_wait_callback_t) ( - ompt_wait_id_t wait_id /* wait data */ + omp_wait_id_t wait_id /* wait data */ ); /* parallel and workshares */ @@ -467,19 +467,19 @@ typedef void (*ompt_callback_mutex_acquire_t) ( ompt_mutex_kind_t kind, /* mutex kind */ unsigned int hint, /* mutex hint */ unsigned int impl, /* mutex implementation */ - ompt_wait_id_t wait_id, /* id of object being awaited */ + omp_wait_id_t wait_id, /* id of object being awaited */ const void *codeptr_ra /* return address of runtime call */ ); typedef void (*ompt_callback_mutex_t) ( ompt_mutex_kind_t kind, /* mutex kind */ - ompt_wait_id_t wait_id, /* id of object being awaited */ + omp_wait_id_t wait_id, /* id of object being awaited */ const void *codeptr_ra /* return address of runtime call */ ); typedef void (*ompt_callback_nest_lock_t) ( ompt_scope_endpoint_t endpoint, /* endpoint of nested lock */ - ompt_wait_id_t wait_id, /* id of object being awaited */ + omp_wait_id_t wait_id, /* id of object being awaited */ const void *codeptr_ra /* return address of runtime call */ ); @@ -569,7 +569,7 @@ extern "C" { /* state */ OMPT_API_FUNCTION(omp_state_t, ompt_get_state, ( - ompt_wait_id_t *wait_id + omp_wait_id_t *wait_id )); /* thread */ |

