[Openmp-commits] [openmp] r238061 - Fix doxygen comments

Jonathan Peyton jonathan.l.peyton at intel.com
Fri May 22 15:37:22 PDT 2015


Author: jlpeyton
Date: Fri May 22 17:37:22 2015
New Revision: 238061

URL: http://llvm.org/viewvc/llvm-project?rev=238061&view=rev
Log:
Fix doxygen comments

These fixes make doxygen happy.

Modified:
    openmp/trunk/runtime/src/kmp_csupport.c
    openmp/trunk/runtime/src/kmp_sched.cpp

Modified: openmp/trunk/runtime/src/kmp_csupport.c
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp_csupport.c?rev=238061&r1=238060&r2=238061&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp_csupport.c (original)
+++ openmp/trunk/runtime/src/kmp_csupport.c Fri May 22 17:37:22 2015
@@ -84,7 +84,7 @@ This function can be called in any conte
 
 If the runtime has ony been entered at the outermost level from a
 single (necessarily non-OpenMP<sup>*</sup>) thread, then the thread number is that
-which would be returned by @ref omp_get_thread_num() in the outermost
+which would be returned by omp_get_thread_num() in the outermost
 active parallel construct. (Or zero if there is no active parallel
 construct, since the master thread is necessarily thread zero).
 
@@ -336,6 +336,7 @@ __kmpc_fork_call(ident_t *loc, kmp_int32
 @param loc source location information
 @param global_tid global thread number
 @param num_teams number of teams requested for the teams construct
+ at param num_threads number of threads per team requested for the teams construct
 
 Set the number of teams to be used by the teams construct.
 This call is only required if the teams construct has a `num_teams` clause
@@ -2176,7 +2177,7 @@ __kmpc_test_lock( ident_t *loc, kmp_int3
     int rc;
     int tag = DYNA_EXTRACT_D_TAG(user_lock);
 # if USE_ITT_BUILD
-    __kmp_itt_lock_acquiring((kmp_user_lock_p)user_lock); 
+    __kmp_itt_lock_acquiring((kmp_user_lock_p)user_lock);
 # endif
 # if DYNA_USE_FAST_TAS
     if (tag == locktag_tas && !__kmp_env_consistency_check) {

Modified: openmp/trunk/runtime/src/kmp_sched.cpp
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp_sched.cpp?rev=238061&r1=238060&r2=238061&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp_sched.cpp (original)
+++ openmp/trunk/runtime/src/kmp_sched.cpp Fri May 22 17:37:22 2015
@@ -782,17 +782,14 @@ __kmpc_for_static_init_8u( ident_t *loc,
 @ingroup WORK_SHARING
 @param    loc       Source code location
 @param    gtid      Global thread id of this thread
- at param    scheduleD Scheduling type for the distribute
- at param    scheduleL Scheduling type for the parallel loop
+ at param    schedule  Scheduling type for the parallel loop
 @param    plastiter Pointer to the "last iteration" flag
 @param    plower    Pointer to the lower bound
 @param    pupper    Pointer to the upper bound of loop chunk
 @param    pupperD   Pointer to the upper bound of dist_chunk
- at param    pstrideD  Pointer to the stride for distribute
- at param    pstrideL  Pointer to the stride for parallel loop
+ at param    pstride   Pointer to the stride for parallel loop
 @param    incr      Loop increment
- at param    chunkD    The chunk size for the distribute
- at param    chunkL    The chunk size for the parallel loop
+ at param    chunk     The chunk size for the parallel loop
 
 Each of the four functions here are identical apart from the argument types.
 





More information about the Openmp-commits mailing list