diff options
author | Jonathan Peyton <jonathan.l.peyton@intel.com> | 2015-09-21 18:11:22 +0000 |
---|---|---|
committer | Jonathan Peyton <jonathan.l.peyton@intel.com> | 2015-09-21 18:11:22 +0000 |
commit | b68a85d1f68203ce2d51c83bc43657a1cd21491a (patch) | |
tree | 7eac31f92d23430f516ec9a28c060997a13adc6b /openmp/runtime/src/ompt-internal.h | |
parent | be58ff82325e8892dc8199f2ca0acba887507895 (diff) | |
download | bcm5719-llvm-b68a85d1f68203ce2d51c83bc43657a1cd21491a.tar.gz bcm5719-llvm-b68a85d1f68203ce2d51c83bc43657a1cd21491a.zip |
[OMPT] Simplify control variable logic for OMPT
Prior to this change, OMPT had a status flag ompt_status, which could take
several values. This was due to an earlier OMPT design that had several levels
of enablement (ready, disabled, tracking state, tracking callbacks). The
current OMPT design has OMPT support either on or off.
This revision replaces ompt_status with a boolean flag ompt_enabled, which
simplifies the runtime logic for OMPT.
Patch by John Mellor-Crummey
Differential Revision: http://reviews.llvm.org/D12999
llvm-svn: 248189
Diffstat (limited to 'openmp/runtime/src/ompt-internal.h')
-rw-r--r-- | openmp/runtime/src/ompt-internal.h | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/openmp/runtime/src/ompt-internal.h b/openmp/runtime/src/ompt-internal.h index 6d9f6f0291f..64e8d2e8fd6 100644 --- a/openmp/runtime/src/ompt-internal.h +++ b/openmp/runtime/src/ompt-internal.h @@ -14,16 +14,6 @@ #define ompt_callback(e) e ## _callback -/* track and track_callback share a bit so that one can test whether either is - * set by anding a bit. - */ -typedef enum { - ompt_status_disabled = 0x0, - ompt_status_ready = 0x1, - ompt_status_track = 0x2, - ompt_status_track_callback = 0x6, -} ompt_status_t; - typedef struct ompt_callbacks_s { #define ompt_event_macro(event, callback, eventid) callback ompt_callback(event); @@ -70,7 +60,6 @@ typedef struct { } ompt_thread_info_t; -extern ompt_status_t ompt_status; extern ompt_callbacks_t ompt_callbacks; #ifdef __cplusplus @@ -81,6 +70,8 @@ void ompt_pre_init(void); void ompt_post_init(void); void ompt_fini(void); +extern int ompt_enabled; + #ifdef __cplusplus }; #endif |