Browse Source

Restoring authorship annotation for <babenko@yandex-team.ru>. Commit 1 of 2.

babenko 3 years ago
parent
commit
cec37806d8

+ 1 - 1
build/docs/all.md

@@ -1022,7 +1022,7 @@ Available allocators are: "LF", "LF\_YT", "LF\_DBG", "YT", "J", "B", "BM", "C",
   - LF - lfalloc (https://a.yandex-team.ru/arc/trunk/arcadia/library/cpp/lfalloc)
   - LF\_YT -  Allocator selection for YT (https://a.yandex-team.ru/arc/trunk/arcadia/library/cpp/lfalloc/yt/ya.make)
   - LF\_DBG -  Debug allocator selection (https://a.yandex-team.ru/arc/trunk/arcadia/library/cpp/lfalloc/dbg/ya.make)
-  - YT - The YTAlloc allocator (https://a.yandex-team.ru/arc/trunk/arcadia/library/cpp/ytalloc/impl/ya.make)
+  - YT - The YTAlloc allocator (https://a.yandex-team.ru/arc/trunk/arcadia/library/cpp/ytalloc/impl/ya.make) 
   - J - The JEMalloc allocator (https://a.yandex-team.ru/arc/trunk/arcadia/library/malloc/jemalloc)
   - B - The balloc allocator named Pyotr Popov and Anton Samokhvalov
       - Discussion: https://ironpeter.at.yandex-team.ru/replies.xml?item\_no=126

+ 1 - 1
build/docs/readme.md

@@ -754,7 +754,7 @@ Available allocators are: "LF", "LF\_YT", "LF\_DBG", "YT", "J", "B", "BM", "C",
   - LF - lfalloc (https://a.yandex-team.ru/arc/trunk/arcadia/library/cpp/lfalloc)
   - LF\_YT -  Allocator selection for YT (https://a.yandex-team.ru/arc/trunk/arcadia/library/cpp/lfalloc/yt/ya.make)
   - LF\_DBG -  Debug allocator selection (https://a.yandex-team.ru/arc/trunk/arcadia/library/cpp/lfalloc/dbg/ya.make)
-  - YT - The YTAlloc allocator (https://a.yandex-team.ru/arc/trunk/arcadia/library/cpp/ytalloc/impl/ya.make)
+  - YT - The YTAlloc allocator (https://a.yandex-team.ru/arc/trunk/arcadia/library/cpp/ytalloc/impl/ya.make) 
   - J - The JEMalloc allocator (https://a.yandex-team.ru/arc/trunk/arcadia/library/malloc/jemalloc)
   - B - The balloc allocator named Pyotr Popov and Anton Samokhvalov
       - Discussion: https://ironpeter.at.yandex-team.ru/replies.xml?item\_no=126

+ 7 - 7
build/ymake.core.conf

@@ -1484,9 +1484,9 @@ when ($COMMON_LINK_SETTINGS == "yes") {
             "LOCKLESS" ? {
                 PEERDIR+=library/cpp/malloc/lockless
             }
-            "YT" ? {
-                PEERDIR+=library/cpp/ytalloc/impl
-            }
+            "YT" ? { 
+                PEERDIR+=library/cpp/ytalloc/impl 
+            } 
         }
     }
 
@@ -1706,7 +1706,7 @@ module PY2_PROGRAM: _PY2_PROGRAM {
     otherwise {
         PEERDIR+=build/rules/py2_deprecation
     }
-    ASSERT(_OK You are using deprecated Python2-only code (PY2_PROGRAM). Please consider rewriting to Python 3.)
+    ASSERT(_OK You are using deprecated Python2-only code (PY2_PROGRAM). Please consider rewriting to Python 3.) 
 }
 
 # tag:python-specific
@@ -2187,7 +2187,7 @@ module PY2TEST: PYTEST_BIN {
         PEERDIR+=build/rules/py2_deprecation
     }
     SET(MODULE_LANG PY2)
-    ASSERT(_OK You are using deprecated Python2-only code (PY2TEST). Please consider rewriting to Python 3.)
+    ASSERT(_OK You are using deprecated Python2-only code (PY2TEST). Please consider rewriting to Python 3.) 
 }
 
 # tag:python-specific tag:deprecated tag:test
@@ -5008,7 +5008,7 @@ multimodule SANDBOX_TASK {
             PEERDIR+=build/rules/py2_deprecation
         }
 
-        ASSERT(_OK You are using deprecated Python2-only code (SANDBOX_TASK). Please consider rewriting to 2/3-compatible code.)
+        ASSERT(_OK You are using deprecated Python2-only code (SANDBOX_TASK). Please consider rewriting to 2/3-compatible code.) 
     }
     module PY2: PY2_LIBRARY {
         PEERDIR(sandbox/sdk2 sandbox/sandboxsdk)
@@ -5262,7 +5262,7 @@ macro ADD_PERL_MODULE(Dir, Module) {
 ###   - LF - lfalloc (https://a.yandex-team.ru/arc/trunk/arcadia/library/cpp/lfalloc)
 ###   - LF_YT -  Allocator selection for YT (https://a.yandex-team.ru/arc/trunk/arcadia/library/cpp/lfalloc/yt/ya.make)
 ###   - LF_DBG -  Debug allocator selection (https://a.yandex-team.ru/arc/trunk/arcadia/library/cpp/lfalloc/dbg/ya.make)
-###   - YT - The YTAlloc allocator (https://a.yandex-team.ru/arc/trunk/arcadia/library/cpp/ytalloc/impl/ya.make)
+###   - YT - The YTAlloc allocator (https://a.yandex-team.ru/arc/trunk/arcadia/library/cpp/ytalloc/impl/ya.make) 
 ###   - J - The JEMalloc allocator (https://a.yandex-team.ru/arc/trunk/arcadia/library/malloc/jemalloc)
 ###   - B - The balloc allocator named Pyotr Popov and Anton Samokhvalov
 ###       - Discussion: https://ironpeter.at.yandex-team.ru/replies.xml?item_no=126

+ 1 - 1
library/cpp/actors/prof/tag.cpp

@@ -7,7 +7,7 @@
 
 #if defined(PROFILE_MEMORY_ALLOCATIONS)
 #include <library/cpp/lfalloc/dbg_info/dbg_info.h>
-#include <library/cpp/ytalloc/api/ytalloc.h>
+#include <library/cpp/ytalloc/api/ytalloc.h> 
 #endif
 
 #include <util/generic/singleton.h>

+ 1 - 1
library/cpp/actors/prof/ya.make

@@ -19,7 +19,7 @@ IF (PROFILE_MEMORY_ALLOCATIONS)
     PEERDIR(
         library/cpp/malloc/api
         library/cpp/lfalloc/dbg_info
-        library/cpp/ytalloc/api
+        library/cpp/ytalloc/api 
     )
 ENDIF()
 

+ 1 - 1
library/cpp/testing/common/probe.h

@@ -1,7 +1,7 @@
 #pragma once
 
 #include <util/system/yassert.h>
-
+ 
 namespace NTesting {
     ////////////////////////////////////////////////////////////////////////////////
 

+ 1 - 1
library/cpp/testing/gtest_extensions/probe.h

@@ -1,7 +1,7 @@
 #pragma once
 
 #include <util/system/yassert.h>
-
+ 
 #include <library/cpp/testing/common/probe.h>
 
 #include <gtest/gtest.h>

+ 2 - 2
library/cpp/ya.make

@@ -416,7 +416,7 @@ RECURSE(
     yson/node/pybind
     yson_pull
     yson_pull/ut
-    yt
+    yt 
     zipatch
 )
 
@@ -426,7 +426,7 @@ IF (OS_LINUX)
         balloc/aba_agri_test
         balloc_market/test
         balloc_market/aba_agri_test
-        ytalloc
+        ytalloc 
         rseq
     )
 ENDIF()

+ 1 - 1
library/cpp/yson/public.h

@@ -1,6 +1,6 @@
 #pragma once
 
-#include <library/cpp/yt/misc/enum.h>
+#include <library/cpp/yt/misc/enum.h> 
 #include <util/generic/yexception.h>
 
 #include <library/cpp/yt/yson_string/public.h>

+ 1 - 1
library/cpp/yson/ya.make

@@ -6,7 +6,7 @@ OWNER(
 )
 
 PEERDIR(
-    library/cpp/yt/misc
+    library/cpp/yt/misc 
     library/cpp/yt/yson
 )
 

Some files were not shown because too many files changed in this diff