[Openmp-commits] [openmp] r289739 - Follow up to r289732: Update comments in source files to reference .cpp files

Jonathan Peyton via Openmp-commits openmp-commits at lists.llvm.org
Wed Dec 14 15:01:24 PST 2016


Author: jlpeyton
Date: Wed Dec 14 17:01:24 2016
New Revision: 289739

URL: http://llvm.org/viewvc/llvm-project?rev=289739&view=rev
Log:
Follow up to r289732: Update comments in source files to reference .cpp files

Patch by Hansang Bae

Modified:
    openmp/trunk/runtime/src/kmp.h
    openmp/trunk/runtime/src/kmp_alloc.cpp
    openmp/trunk/runtime/src/kmp_atomic.cpp
    openmp/trunk/runtime/src/kmp_csupport.cpp
    openmp/trunk/runtime/src/kmp_debug.cpp
    openmp/trunk/runtime/src/kmp_dispatch.cpp
    openmp/trunk/runtime/src/kmp_environment.cpp
    openmp/trunk/runtime/src/kmp_error.cpp
    openmp/trunk/runtime/src/kmp_ftn_cdecl.cpp
    openmp/trunk/runtime/src/kmp_ftn_extra.cpp
    openmp/trunk/runtime/src/kmp_ftn_stdcall.cpp
    openmp/trunk/runtime/src/kmp_global.cpp
    openmp/trunk/runtime/src/kmp_gsupport.cpp
    openmp/trunk/runtime/src/kmp_i18n.cpp
    openmp/trunk/runtime/src/kmp_import.cpp
    openmp/trunk/runtime/src/kmp_io.cpp
    openmp/trunk/runtime/src/kmp_itt.cpp
    openmp/trunk/runtime/src/kmp_lock.cpp
    openmp/trunk/runtime/src/kmp_lock.h
    openmp/trunk/runtime/src/kmp_runtime.cpp
    openmp/trunk/runtime/src/kmp_sched.cpp
    openmp/trunk/runtime/src/kmp_settings.cpp
    openmp/trunk/runtime/src/kmp_str.cpp
    openmp/trunk/runtime/src/kmp_stub.cpp
    openmp/trunk/runtime/src/kmp_tasking.cpp
    openmp/trunk/runtime/src/kmp_taskq.cpp
    openmp/trunk/runtime/src/kmp_threadprivate.cpp
    openmp/trunk/runtime/src/kmp_utility.cpp
    openmp/trunk/runtime/src/kmp_version.cpp
    openmp/trunk/runtime/src/tsan_annotations.cpp
    openmp/trunk/runtime/src/z_Linux_util.cpp
    openmp/trunk/runtime/src/z_Windows_NT-586_util.cpp
    openmp/trunk/runtime/src/z_Windows_NT_util.cpp

Modified: openmp/trunk/runtime/src/kmp.h
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp.h?rev=289739&r1=289738&r2=289739&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp.h (original)
+++ openmp/trunk/runtime/src/kmp.h Wed Dec 14 17:01:24 2016
@@ -3183,7 +3183,7 @@ extern void __kmp_aux_set_stacksize( siz
 extern void __kmp_aux_set_blocktime (int arg, kmp_info_t *thread, int tid);
 extern void __kmp_aux_set_defaults( char const * str, int len );
 
-/* Functions below put here to call them from __kmp_aux_env_initialize() in kmp_settings.c */
+/* Functions called from __kmp_aux_env_initialize() in kmp_settings.cpp */
 void kmpc_set_blocktime (int arg);
 void ompc_set_nested( int flag );
 void ompc_set_dynamic( int flag );

Modified: openmp/trunk/runtime/src/kmp_alloc.cpp
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp_alloc.cpp?rev=289739&r1=289738&r2=289739&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp_alloc.cpp (original)
+++ openmp/trunk/runtime/src/kmp_alloc.cpp Wed Dec 14 17:01:24 2016
@@ -1,5 +1,5 @@
 /*
- * kmp_alloc.c -- private/shared dynamic memory allocation and management
+ * kmp_alloc.cpp -- private/shared dynamic memory allocation and management
  */
 
 

Modified: openmp/trunk/runtime/src/kmp_atomic.cpp
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp_atomic.cpp?rev=289739&r1=289738&r2=289739&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp_atomic.cpp (original)
+++ openmp/trunk/runtime/src/kmp_atomic.cpp Wed Dec 14 17:01:24 2016
@@ -1,5 +1,5 @@
 /*
- * kmp_atomic.c -- ATOMIC implementation routines
+ * kmp_atomic.cpp -- ATOMIC implementation routines
  */
 
 

Modified: openmp/trunk/runtime/src/kmp_csupport.cpp
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp_csupport.cpp?rev=289739&r1=289738&r2=289739&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp_csupport.cpp (original)
+++ openmp/trunk/runtime/src/kmp_csupport.cpp Wed Dec 14 17:01:24 2016
@@ -1,5 +1,5 @@
 /*
- * kmp_csupport.c -- kfront linkage support for OpenMP.
+ * kmp_csupport.cpp -- kfront linkage support for OpenMP.
  */
 
 
@@ -464,9 +464,10 @@ when the condition is false.
 void
 __kmpc_serialized_parallel(ident_t *loc, kmp_int32 global_tid)
 {
-    __kmp_serialized_parallel(loc, global_tid); /* The implementation is now in kmp_runtime.c so that it can share static functions with
-                                                 * kmp_fork_call since the tasks to be done are similar in each case.
-                                                 */
+    // The implementation is now in kmp_runtime.cpp so that it can share static
+    // functions with kmp_fork_call since the tasks to be done are similar in
+    // each case.
+    __kmp_serialized_parallel(loc, global_tid);
 }
 
 /*!

Modified: openmp/trunk/runtime/src/kmp_debug.cpp
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp_debug.cpp?rev=289739&r1=289738&r2=289739&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp_debug.cpp (original)
+++ openmp/trunk/runtime/src/kmp_debug.cpp Wed Dec 14 17:01:24 2016
@@ -1,5 +1,5 @@
 /*
- * kmp_debug.c -- debug utilities for the Guide library
+ * kmp_debug.cpp -- debug utilities for the Guide library
  */
 
 

Modified: openmp/trunk/runtime/src/kmp_dispatch.cpp
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp_dispatch.cpp?rev=289739&r1=289738&r2=289739&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp_dispatch.cpp (original)
+++ openmp/trunk/runtime/src/kmp_dispatch.cpp Wed Dec 14 17:01:24 2016
@@ -2616,7 +2616,7 @@ __kmpc_dispatch_fini_8u( ident_t *loc, k
 /*! @} */
 
 //-----------------------------------------------------------------------------------------
-//Non-template routines from kmp_dispatch.c used in other sources
+//Non-template routines from kmp_dispatch.cpp used in other sources
 
 kmp_uint32 __kmp_eq_4( kmp_uint32 value, kmp_uint32 checker) {
     return value == checker;

Modified: openmp/trunk/runtime/src/kmp_environment.cpp
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp_environment.cpp?rev=289739&r1=289738&r2=289739&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp_environment.cpp (original)
+++ openmp/trunk/runtime/src/kmp_environment.cpp Wed Dec 14 17:01:24 2016
@@ -1,5 +1,5 @@
 /*
- * kmp_environment.c -- Handle environment variables OS-independently.
+ * kmp_environment.cpp -- Handle environment variables OS-independently.
  */
 
 

Modified: openmp/trunk/runtime/src/kmp_error.cpp
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp_error.cpp?rev=289739&r1=289738&r2=289739&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp_error.cpp (original)
+++ openmp/trunk/runtime/src/kmp_error.cpp Wed Dec 14 17:01:24 2016
@@ -1,5 +1,5 @@
 /*
- * kmp_error.c -- KPTS functions for error checking at runtime
+ * kmp_error.cpp -- KPTS functions for error checking at runtime
  */
 
 

Modified: openmp/trunk/runtime/src/kmp_ftn_cdecl.cpp
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp_ftn_cdecl.cpp?rev=289739&r1=289738&r2=289739&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp_ftn_cdecl.cpp (original)
+++ openmp/trunk/runtime/src/kmp_ftn_cdecl.cpp Wed Dec 14 17:01:24 2016
@@ -1,5 +1,5 @@
 /*
- * kmp_ftn_cdecl.c -- Fortran __cdecl linkage support for OpenMP.
+ * kmp_ftn_cdecl.cpp -- Fortran __cdecl linkage support for OpenMP.
  */
 
 

Modified: openmp/trunk/runtime/src/kmp_ftn_extra.cpp
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp_ftn_extra.cpp?rev=289739&r1=289738&r2=289739&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp_ftn_extra.cpp (original)
+++ openmp/trunk/runtime/src/kmp_ftn_extra.cpp Wed Dec 14 17:01:24 2016
@@ -1,5 +1,5 @@
 /*
- * kmp_ftn_extra.c -- Fortran 'extra' linkage support for OpenMP.
+ * kmp_ftn_extra.cpp -- Fortran 'extra' linkage support for OpenMP.
  */
 
 

Modified: openmp/trunk/runtime/src/kmp_ftn_stdcall.cpp
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp_ftn_stdcall.cpp?rev=289739&r1=289738&r2=289739&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp_ftn_stdcall.cpp (original)
+++ openmp/trunk/runtime/src/kmp_ftn_stdcall.cpp Wed Dec 14 17:01:24 2016
@@ -1,5 +1,5 @@
 /*
- * kmp_ftn_stdcall.c -- Fortran __stdcall linkage support for OpenMP.
+ * kmp_ftn_stdcall.cpp -- Fortran __stdcall linkage support for OpenMP.
  */
 
 

Modified: openmp/trunk/runtime/src/kmp_global.cpp
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp_global.cpp?rev=289739&r1=289738&r2=289739&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp_global.cpp (original)
+++ openmp/trunk/runtime/src/kmp_global.cpp Wed Dec 14 17:01:24 2016
@@ -1,5 +1,5 @@
 /*
- * kmp_global.c -- KPTS global variables for runtime support library
+ * kmp_global.cpp -- KPTS global variables for runtime support library
  */
 
 

Modified: openmp/trunk/runtime/src/kmp_gsupport.cpp
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp_gsupport.cpp?rev=289739&r1=289738&r2=289739&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp_gsupport.cpp (original)
+++ openmp/trunk/runtime/src/kmp_gsupport.cpp Wed Dec 14 17:01:24 2016
@@ -1,5 +1,5 @@
 /*
- * kmp_gsupport.c
+ * kmp_gsupport.cpp
  */
 
 

Modified: openmp/trunk/runtime/src/kmp_i18n.cpp
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp_i18n.cpp?rev=289739&r1=289738&r2=289739&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp_i18n.cpp (original)
+++ openmp/trunk/runtime/src/kmp_i18n.cpp Wed Dec 14 17:01:24 2016
@@ -1,5 +1,5 @@
 /*
- * kmp_i18n.c
+ * kmp_i18n.cpp
  */
 
 

Modified: openmp/trunk/runtime/src/kmp_import.cpp
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp_import.cpp?rev=289739&r1=289738&r2=289739&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp_import.cpp (original)
+++ openmp/trunk/runtime/src/kmp_import.cpp Wed Dec 14 17:01:24 2016
@@ -1,5 +1,5 @@
 /*
- * kmp_import.c
+ * kmp_import.cpp
  */
 
 

Modified: openmp/trunk/runtime/src/kmp_io.cpp
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp_io.cpp?rev=289739&r1=289738&r2=289739&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp_io.cpp (original)
+++ openmp/trunk/runtime/src/kmp_io.cpp Wed Dec 14 17:01:24 2016
@@ -1,5 +1,5 @@
 /*
- * KMP_IO.c -- RTL IO
+ * kmp_io.cpp -- RTL IO
  */
 
 

Modified: openmp/trunk/runtime/src/kmp_itt.cpp
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp_itt.cpp?rev=289739&r1=289738&r2=289739&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp_itt.cpp (original)
+++ openmp/trunk/runtime/src/kmp_itt.cpp Wed Dec 14 17:01:24 2016
@@ -2,7 +2,7 @@
 
 #if USE_ITT_BUILD
 /*
- * kmp_itt.c -- ITT Notify interface.
+ * kmp_itt.cpp -- ITT Notify interface.
  */
 
 

Modified: openmp/trunk/runtime/src/kmp_lock.cpp
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp_lock.cpp?rev=289739&r1=289738&r2=289739&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp_lock.cpp (original)
+++ openmp/trunk/runtime/src/kmp_lock.cpp Wed Dec 14 17:01:24 2016
@@ -2528,7 +2528,7 @@ __kmp_acquire_drdpa_lock_timed_template(
     // polling area has been reconfigured.  Unless it is reconfigured, the
     // reloads stay in L1 cache and are cheap.
     //
-    // Keep this code in sync with KMP_WAIT_YIELD, in kmp_dispatch.c !!!
+    // Keep this code in sync with KMP_WAIT_YIELD, in kmp_dispatch.cpp !!!
     //
     // The current implementation of KMP_WAIT_YIELD doesn't allow for mask
     // and poll to be re-read every spin iteration.
@@ -3522,7 +3522,7 @@ __kmp_test_indirect_lock_with_checks(kmp
 
 kmp_dyna_lockseq_t __kmp_user_lock_seq = lockseq_queuing;
 
-// This is used only in kmp_error.c when consistency checking is on.
+// This is used only in kmp_error.cpp when consistency checking is on.
 kmp_int32
 __kmp_get_user_lock_owner(kmp_user_lock_p lck, kmp_uint32 seq)
 {

Modified: openmp/trunk/runtime/src/kmp_lock.h
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp_lock.h?rev=289739&r1=289738&r2=289739&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp_lock.h (original)
+++ openmp/trunk/runtime/src/kmp_lock.h Wed Dec 14 17:01:24 2016
@@ -1287,7 +1287,7 @@ extern int __kmp_num_locks_in_block;
                                ? KMP_GET_I_LOCK(KMP_EXTRACT_I_INDEX(l)) \
                                : *((kmp_indirect_lock_t **)(l)) )
 
-// Used once in kmp_error.c
+// Used once in kmp_error.cpp
 extern kmp_int32
 __kmp_get_user_lock_owner(kmp_user_lock_p, kmp_uint32);
 

Modified: openmp/trunk/runtime/src/kmp_runtime.cpp
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp_runtime.cpp?rev=289739&r1=289738&r2=289739&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp_runtime.cpp (original)
+++ openmp/trunk/runtime/src/kmp_runtime.cpp Wed Dec 14 17:01:24 2016
@@ -1,5 +1,5 @@
 /*
- * kmp_runtime.c -- KPTS runtime support library
+ * kmp_runtime.cpp -- KPTS runtime support library
  */
 
 

Modified: openmp/trunk/runtime/src/kmp_sched.cpp
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp_sched.cpp?rev=289739&r1=289738&r2=289739&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp_sched.cpp (original)
+++ openmp/trunk/runtime/src/kmp_sched.cpp Wed Dec 14 17:01:24 2016
@@ -1,5 +1,5 @@
 /*
- * kmp_sched.c -- static scheduling -- iteration initialization
+ * kmp_sched.cpp -- static scheduling -- iteration initialization
  */
 
 

Modified: openmp/trunk/runtime/src/kmp_settings.cpp
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp_settings.cpp?rev=289739&r1=289738&r2=289739&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp_settings.cpp (original)
+++ openmp/trunk/runtime/src/kmp_settings.cpp Wed Dec 14 17:01:24 2016
@@ -1,5 +1,5 @@
 /*
- * kmp_settings.c -- Initialize environment variables
+ * kmp_settings.cpp -- Initialize environment variables
  */
 
 

Modified: openmp/trunk/runtime/src/kmp_str.cpp
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp_str.cpp?rev=289739&r1=289738&r2=289739&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp_str.cpp (original)
+++ openmp/trunk/runtime/src/kmp_str.cpp Wed Dec 14 17:01:24 2016
@@ -1,5 +1,5 @@
 /*
- * kmp_str.c -- String manipulation routines.
+ * kmp_str.cpp -- String manipulation routines.
  */
 
 

Modified: openmp/trunk/runtime/src/kmp_stub.cpp
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp_stub.cpp?rev=289739&r1=289738&r2=289739&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp_stub.cpp (original)
+++ openmp/trunk/runtime/src/kmp_stub.cpp Wed Dec 14 17:01:24 2016
@@ -1,5 +1,5 @@
 /*
- * kmp_stub.c -- stub versions of user-callable OpenMP RT functions.
+ * kmp_stub.cpp -- stub versions of user-callable OpenMP RT functions.
  */
 
 
@@ -56,16 +56,16 @@ static size_t __kmps_init() {
     static size_t dummy = 0;
     if ( ! initialized ) {
 
-        // TODO: Analyze KMP_VERSION environment variable, print __kmp_version_copyright and
-        // __kmp_version_build_time.
-        // WARNING: Do not use "fprintf( stderr, ... )" because it will cause unresolved "__iob"
-        // symbol (see C70080). We need to extract __kmp_printf() stuff from kmp_runtime.c and use
-        // it.
-
-        // Trick with dummy variable forces linker to keep __kmp_version_copyright and
-        // __kmp_version_build_time strings in executable file (in case of static linkage).
-        // When KMP_VERSION analyze is implemented, dummy variable should be deleted, function
-        // should return void.
+        // TODO: Analyze KMP_VERSION environment variable, print
+        // __kmp_version_copyright and __kmp_version_build_time.
+        // WARNING: Do not use "fprintf( stderr, ... )" because it will cause
+        // unresolved "__iob" symbol (see C70080). We need to extract
+        // __kmp_printf() stuff from kmp_runtime.cpp and use it.
+
+        // Trick with dummy variable forces linker to keep __kmp_version_copyright
+        // and __kmp_version_build_time strings in executable file (in case of
+        // static linkage). When KMP_VERSION analysis is implemented, dummy
+        // variable should be deleted, function should return void.
         dummy = __kmp_version_copyright - __kmp_version_build_time;
 
         #if KMP_OS_WINDOWS

Modified: openmp/trunk/runtime/src/kmp_tasking.cpp
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp_tasking.cpp?rev=289739&r1=289738&r2=289739&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp_tasking.cpp (original)
+++ openmp/trunk/runtime/src/kmp_tasking.cpp Wed Dec 14 17:01:24 2016
@@ -1,5 +1,5 @@
 /*
- * kmp_tasking.c -- OpenMP 3.0 tasking support.
+ * kmp_tasking.cpp -- OpenMP 3.0 tasking support.
  */
 
 

Modified: openmp/trunk/runtime/src/kmp_taskq.cpp
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp_taskq.cpp?rev=289739&r1=289738&r2=289739&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp_taskq.cpp (original)
+++ openmp/trunk/runtime/src/kmp_taskq.cpp Wed Dec 14 17:01:24 2016
@@ -1,5 +1,5 @@
 /*
- * kmp_taskq.c -- TASKQ support for OpenMP.
+ * kmp_taskq.cpp -- TASKQ support for OpenMP.
  */
 
 

Modified: openmp/trunk/runtime/src/kmp_threadprivate.cpp
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp_threadprivate.cpp?rev=289739&r1=289738&r2=289739&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp_threadprivate.cpp (original)
+++ openmp/trunk/runtime/src/kmp_threadprivate.cpp Wed Dec 14 17:01:24 2016
@@ -1,5 +1,5 @@
 /*
- * kmp_threadprivate.c -- OpenMP threadprivate support library
+ * kmp_threadprivate.cpp -- OpenMP threadprivate support library
  */
 
 

Modified: openmp/trunk/runtime/src/kmp_utility.cpp
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp_utility.cpp?rev=289739&r1=289738&r2=289739&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp_utility.cpp (original)
+++ openmp/trunk/runtime/src/kmp_utility.cpp Wed Dec 14 17:01:24 2016
@@ -1,5 +1,5 @@
 /*
- * kmp_utility.c -- Utility routines for the OpenMP support library.
+ * kmp_utility.cpp -- Utility routines for the OpenMP support library.
  */
 
 

Modified: openmp/trunk/runtime/src/kmp_version.cpp
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp_version.cpp?rev=289739&r1=289738&r2=289739&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp_version.cpp (original)
+++ openmp/trunk/runtime/src/kmp_version.cpp Wed Dec 14 17:01:24 2016
@@ -1,5 +1,5 @@
 /*
- * kmp_version.c
+ * kmp_version.cpp
  */
 
 

Modified: openmp/trunk/runtime/src/tsan_annotations.cpp
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/tsan_annotations.cpp?rev=289739&r1=289738&r2=289739&view=diff
==============================================================================
--- openmp/trunk/runtime/src/tsan_annotations.cpp (original)
+++ openmp/trunk/runtime/src/tsan_annotations.cpp Wed Dec 14 17:01:24 2016
@@ -1,5 +1,5 @@
 /*
- * tsan_annotations.c -- ThreadSanitizer annotations to support data
+ * tsan_annotations.cpp -- ThreadSanitizer annotations to support data
  * race detection in OpenMP programs.
  */
 

Modified: openmp/trunk/runtime/src/z_Linux_util.cpp
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/z_Linux_util.cpp?rev=289739&r1=289738&r2=289739&view=diff
==============================================================================
--- openmp/trunk/runtime/src/z_Linux_util.cpp (original)
+++ openmp/trunk/runtime/src/z_Linux_util.cpp Wed Dec 14 17:01:24 2016
@@ -1,5 +1,5 @@
 /*
- * z_Linux_util.c -- platform specific routines.
+ * z_Linux_util.cpp -- platform specific routines.
  */
 
 
@@ -1503,7 +1503,7 @@ __kmp_atfork_child (void)
        Suggestion is to make the library initialization lazier, similar
        to what done for __kmpc_begin(). */
     // TODO: synchronize all static initializations with regular library
-    //       startup; look at kmp_global.c and etc.
+    //       startup; look at kmp_global.cpp and etc.
     //__kmp_internal_begin ();
 
 }

Modified: openmp/trunk/runtime/src/z_Windows_NT-586_util.cpp
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/z_Windows_NT-586_util.cpp?rev=289739&r1=289738&r2=289739&view=diff
==============================================================================
--- openmp/trunk/runtime/src/z_Windows_NT-586_util.cpp (original)
+++ openmp/trunk/runtime/src/z_Windows_NT-586_util.cpp Wed Dec 14 17:01:24 2016
@@ -1,5 +1,5 @@
 /*
- * z_Windows_NT-586_util.c -- platform specific routines.
+ * z_Windows_NT-586_util.cpp -- platform specific routines.
  */
 
 

Modified: openmp/trunk/runtime/src/z_Windows_NT_util.cpp
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/z_Windows_NT_util.cpp?rev=289739&r1=289738&r2=289739&view=diff
==============================================================================
--- openmp/trunk/runtime/src/z_Windows_NT_util.cpp (original)
+++ openmp/trunk/runtime/src/z_Windows_NT_util.cpp Wed Dec 14 17:01:24 2016
@@ -1,5 +1,5 @@
 /*
- * z_Windows_NT_util.c -- platform specific routines.
+ * z_Windows_NT_util.cpp -- platform specific routines.
  */
 
 




More information about the Openmp-commits mailing list