diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2020-07-26 19:36:28 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2020-07-26 19:36:28 +0000 |
commit | cfca06d7963fa0909f90483b42a6d7d194d01e08 (patch) | |
tree | 209fb2a2d68f8f277793fc8df46c753d31bc853b /openmp/runtime/src/kmp_stats.h | |
parent | 706b4fc47bbc608932d3b491ae19a3b9cde9497b (diff) |
Notes
Diffstat (limited to 'openmp/runtime/src/kmp_stats.h')
-rw-r--r-- | openmp/runtime/src/kmp_stats.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/openmp/runtime/src/kmp_stats.h b/openmp/runtime/src/kmp_stats.h index ee95658fd9b7..a36528f3fca3 100644 --- a/openmp/runtime/src/kmp_stats.h +++ b/openmp/runtime/src/kmp_stats.h @@ -195,7 +195,7 @@ enum stats_state_e { // from a dynamically scheduled loop // OMP_critical -- Time thread spends executing critical section // OMP_critical_wait -- Time thread spends waiting to enter -// a critcal seciton +// a critical section // OMP_single -- Time spent executing a "single" region // OMP_master -- Time spent executing a "master" region // OMP_task_immediate -- Time spent executing non-deferred tasks @@ -522,7 +522,7 @@ public: void windup(); }; -// Special wrapper around the partioned timers to aid timing code blocks +// Special wrapper around the partitioned timers to aid timing code blocks // It avoids the need to have an explicit end, leaving the scope suffices. class blockPartitionedTimer { partitionedTimers *part_timers; @@ -920,7 +920,7 @@ extern kmp_stats_output_module __kmp_stats_output; #define KMP_OUTPUT_STATS(heading_string) __kmp_output_stats(heading_string) /*! - * \brief Initializes the paritioned timers to begin with name. + * \brief Initializes the partitioned timers to begin with name. * * @param name timer which you want this thread to begin with * |