diff options
author | divankov <divankov@yandex-team.ru> | 2022-02-10 16:48:05 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:48:05 +0300 |
commit | cd88d7933255d8690da34c7b1f7427cf2bb3ae23 (patch) | |
tree | 39e40694c8b41674a17b90f034e31d7cfcf20142 /util/system/nice.cpp | |
parent | 37a2795395ba606e239b750ff2afb17905274ec4 (diff) | |
download | ydb-cd88d7933255d8690da34c7b1f7427cf2bb3ae23.tar.gz |
Restoring authorship annotation for <divankov@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/system/nice.cpp')
-rw-r--r-- | util/system/nice.cpp | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/util/system/nice.cpp b/util/system/nice.cpp index 20fe9260545..cbab07f688f 100644 --- a/util/system/nice.cpp +++ b/util/system/nice.cpp @@ -1,15 +1,15 @@ -#include "nice.h" - -#include "platform.h" - -#if defined(_unix_) +#include "nice.h" + +#include "platform.h" + +#if defined(_unix_) #include <unistd.h> -#endif - -bool Nice(int prioDelta) { -#if defined(_unix_) - return nice(prioDelta) != -1; -#else - return prioDelta == 0; -#endif -} +#endif + +bool Nice(int prioDelta) { +#if defined(_unix_) + return nice(prioDelta) != -1; +#else + return prioDelta == 0; +#endif +} |