summaryrefslogtreecommitdiffstats
path: root/openmp/runtime/src
diff options
context:
space:
mode:
authorJonathan Peyton <jonathan.l.peyton@intel.com>2017-05-15 17:39:16 +0000
committerJonathan Peyton <jonathan.l.peyton@intel.com>2017-05-15 17:39:16 +0000
commit6da813336cc5f7f64d4771d3528fea05209e1844 (patch)
treebc6bc64b704bcfd776eeada3d58cbb5503a02852 /openmp/runtime/src
parent1ca0e322a27b8e058bef9a9e3a06d89784663f55 (diff)
downloadbcm5719-llvm-6da813336cc5f7f64d4771d3528fea05209e1844.tar.gz
bcm5719-llvm-6da813336cc5f7f64d4771d3528fea05209e1844.zip
Remove some outdated comments
llvm-svn: 303086
Diffstat (limited to 'openmp/runtime/src')
-rw-r--r--openmp/runtime/src/kmp_tasking.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/openmp/runtime/src/kmp_tasking.cpp b/openmp/runtime/src/kmp_tasking.cpp
index 4be322f2d45..cfd0f3faf08 100644
--- a/openmp/runtime/src/kmp_tasking.cpp
+++ b/openmp/runtime/src/kmp_tasking.cpp
@@ -1468,12 +1468,8 @@ kmp_int32 __kmpc_omp_taskwait(ident_t *loc_ref, kmp_int32 gtid) {
KA_TRACE(10, ("__kmpc_omp_taskwait(enter): T#%d loc=%p\n", gtid, loc_ref));
if (__kmp_tasking_mode != tskm_immediate_exec) {
- // GEH TODO: shouldn't we have some sort of OMPRAP API calls here to mark
- // begin wait?
-
thread = __kmp_threads[gtid];
taskdata = thread->th.th_current_task;
-
#if OMPT_SUPPORT && OMPT_TRACE
ompt_task_id_t my_task_id;
ompt_parallel_id_t my_parallel_id;
@@ -1527,8 +1523,6 @@ kmp_int32 __kmpc_omp_taskwait(ident_t *loc_ref, kmp_int32 gtid) {
__kmp_itt_taskwait_finished(gtid, itt_sync_obj);
#endif /* USE_ITT_BUILD */
- // GEH TODO: shouldn't we have some sort of OMPRAP API calls here to mark
- // end of wait?
// Debugger: The taskwait is completed. Location remains, but thread is
// negated.
taskdata->td_taskwait_thread = -taskdata->td_taskwait_thread;
@@ -1565,9 +1559,6 @@ kmp_int32 __kmpc_omp_taskyield(ident_t *loc_ref, kmp_int32 gtid, int end_part) {
gtid, loc_ref, end_part));
if (__kmp_tasking_mode != tskm_immediate_exec && __kmp_init_parallel) {
- // GEH TODO: shouldn't we have some sort of OMPRAP API calls here to mark
- // begin wait?
-
thread = __kmp_threads[gtid];
taskdata = thread->th.th_current_task;
// Should we model this as a task wait or not?
@@ -1601,8 +1592,6 @@ kmp_int32 __kmpc_omp_taskyield(ident_t *loc_ref, kmp_int32 gtid, int end_part) {
__kmp_itt_taskwait_finished(gtid, itt_sync_obj);
#endif /* USE_ITT_BUILD */
- // GEH TODO: shouldn't we have some sort of OMPRAP API calls here to mark
- // end of wait?
// Debugger: The taskwait is completed. Location remains, but thread is
// negated.
taskdata->td_taskwait_thread = -taskdata->td_taskwait_thread;
OpenPOWER on IntegriCloud