aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/cxxsupp
diff options
context:
space:
mode:
authorIvan Komarov <Ivan.Komarov@dfyz.info>2022-02-10 16:46:48 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:48 +0300
commit4de97ab2fe437cbe83e4c63234e809ddd5ac34f2 (patch)
treeff8fb38b661955e6c99d1d000d6c72f739199590 /contrib/libs/cxxsupp
parent9abfb1a53b7f7b791444d1378e645d8fad9b06ed (diff)
downloadydb-4de97ab2fe437cbe83e4c63234e809ddd5ac34f2.tar.gz
Restoring authorship annotation for Ivan Komarov <Ivan.Komarov@dfyz.info>. Commit 1 of 2.
Diffstat (limited to 'contrib/libs/cxxsupp')
-rw-r--r--contrib/libs/cxxsupp/openmp/kmp_config.h2
-rw-r--r--contrib/libs/cxxsupp/openmp/kmp_utility.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/contrib/libs/cxxsupp/openmp/kmp_config.h b/contrib/libs/cxxsupp/openmp/kmp_config.h
index 35d10e2bfd..99a53b8f46 100644
--- a/contrib/libs/cxxsupp/openmp/kmp_config.h
+++ b/contrib/libs/cxxsupp/openmp/kmp_config.h
@@ -18,7 +18,7 @@
// cmakedefine MACRO 1 will define MACRO as 1 or leave undefined
#define DEBUG_BUILD 0
#define RELWITHDEBINFO_BUILD 0
-#define LIBOMP_USE_ITT_NOTIFY 0
+#define LIBOMP_USE_ITT_NOTIFY 0
#define USE_ITT_NOTIFY LIBOMP_USE_ITT_NOTIFY
#if ! LIBOMP_USE_ITT_NOTIFY
# define INTEL_NO_ITTNOTIFY_API
diff --git a/contrib/libs/cxxsupp/openmp/kmp_utility.c b/contrib/libs/cxxsupp/openmp/kmp_utility.c
index c777d7dc0c..81b1be5819 100644
--- a/contrib/libs/cxxsupp/openmp/kmp_utility.c
+++ b/contrib/libs/cxxsupp/openmp/kmp_utility.c
@@ -288,8 +288,8 @@ __kmp_query_cpuid( kmp_cpuinfo_t *p )
{ // Parse CPU brand string for frequency.
union kmp_cpu_brand_string {
- ui32 buf[ 12 ];
- char string[ sizeof( ui32 ) * 12 + 1 ];
+ ui32 buf[ 12 ];
+ char string[ sizeof( ui32 ) * 12 + 1 ];
}; // union kmp_cpu_brand_string
union kmp_cpu_brand_string brand;
@@ -298,7 +298,7 @@ __kmp_query_cpuid( kmp_cpuinfo_t *p )
p->frequency = 0;
// Get CPU brand string.
- CpuBrand(brand.buf);
+ CpuBrand(brand.buf);
brand.string[ sizeof( brand.string ) - 1 ] = 0; // Just in case. ;-)
KA_TRACE( trace_level, ( "cpu brand string: \"%s\"\n", brand.string ) );