aboutsummaryrefslogtreecommitdiffstats
path: root/util/system/thread.h
diff options
context:
space:
mode:
authoreeight <eeight@yandex-team.ru>2022-02-10 16:46:18 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:18 +0300
commit475c0a46f28166e83fd263badc7546377cddcabe (patch)
tree39c5a49b8aaad78fe390b6f1f2886bdbda40f3e7 /util/system/thread.h
parenta6e0145a095c7bb3770d6e07aee301de5c73f96e (diff)
downloadydb-475c0a46f28166e83fd263badc7546377cddcabe.tar.gz
Restoring authorship annotation for <eeight@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/system/thread.h')
-rw-r--r--util/system/thread.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/util/system/thread.h b/util/system/thread.h
index a6e8abdb5b..2a666fb9c2 100644
--- a/util/system/thread.h
+++ b/util/system/thread.h
@@ -1,8 +1,8 @@
#pragma once
/// This code should not be used directly unless you really understand what you do.
-/// If you need threads, use thread pool functionality in <util/thread/factory.h>
-/// @see SystemThreadFactory()
+/// If you need threads, use thread pool functionality in <util/thread/factory.h>
+/// @see SystemThreadFactory()
#include <util/generic/ptr.h>
#include <util/generic/string.h>
@@ -26,7 +26,7 @@ public:
void* Data;
size_t StackSize;
void* StackPointer;
- // See comments for `SetCurrentThreadName`
+ // See comments for `SetCurrentThreadName`
TString Name = GetProgramName();
inline TParams()
@@ -114,12 +114,12 @@ public:
//
// NOTE: On Linux thread name is limited to 15 symbols which is probably the smallest one among
// all platforms. If you provide a name longer than 15 symbols it will be cut. So if you expect
- // `CurrentThreadName` to return the same name as `name` make sure it's not longer than 15
+ // `CurrentThreadName` to return the same name as `name` make sure it's not longer than 15
// symbols.
- static void SetCurrentThreadName(const char* name);
+ static void SetCurrentThreadName(const char* name);
// NOTE: Will return empty string where CanGetCurrentThreadName() returns false.
- static TString CurrentThreadName();
+ static TString CurrentThreadName();
// NOTE: Depends on a platform version.
// Will return true for Darwin, Linux or fresh Windows 10.