summaryrefslogtreecommitdiffstats
path: root/library/cpp/actors
diff options
context:
space:
mode:
authorrumvadim <[email protected]>2022-02-10 16:50:11 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:50:11 +0300
commitcf62db3a461da3c6fdd693fb4cfada80d16031f2 (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/actors
parent03ed72c7c79029264440f45994a0b30e84919e80 (diff)
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/actors')
-rw-r--r--library/cpp/actors/core/actorsystem.h2
-rw-r--r--library/cpp/actors/testlib/test_runtime.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/actors/core/actorsystem.h b/library/cpp/actors/core/actorsystem.h
index 93e2f64d192..40499d7586f 100644
--- a/library/cpp/actors/core/actorsystem.h
+++ b/library/cpp/actors/core/actorsystem.h
@@ -135,7 +135,7 @@ namespace NActors {
public:
virtual ~ISchedulerThread() {
}
-
+
virtual void Prepare(TActorSystem* actorSystem, volatile ui64* currentTimestamp, volatile ui64* currentMonotonic) = 0;
virtual void PrepareSchedules(NSchedulerQueue::TReader** readers, ui32 scheduleReadersCount) = 0;
virtual void PrepareStart() { /* empty */ }
diff --git a/library/cpp/actors/testlib/test_runtime.cpp b/library/cpp/actors/testlib/test_runtime.cpp
index 18826ba6cdb..6fa25b99656 100644
--- a/library/cpp/actors/testlib/test_runtime.cpp
+++ b/library/cpp/actors/testlib/test_runtime.cpp
@@ -1619,7 +1619,7 @@ namespace NActors {
setup->Executors[2].Reset(new TIOExecutorPool(2, 1));
setup->Executors[3].Reset(new TBasicExecutorPool(3, 2, 20));
setup->Executors[4].Reset(new TBasicExecutorPool(4, 1, 20));
- setup->Scheduler.Reset(new TBasicSchedulerThread(TSchedulerConfig(512, 100)));
+ setup->Scheduler.Reset(new TBasicSchedulerThread(TSchedulerConfig(512, 100)));
} else {
setup->ExecutorsCount = 1;
setup->Scheduler.Reset(new TSchedulerThreadStub(this, node));