aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkruall <kruall@ydb.tech>2023-12-13 23:04:16 +0300
committerkruall <kruall@ydb.tech>2023-12-14 00:22:34 +0300
commitd2c7b8c29f41cae3585e77f5356af32abe42f487 (patch)
treedd5313d16cf696e683a0cac81091e57602a72bfe
parent91ecc69b22a78d3e823a1f6c9475c149e3dfaa36 (diff)
downloadydb-d2c7b8c29f41cae3585e77f5356af32abe42f487.tar.gz
Fix build, KIKIMR-18440
-rw-r--r--ydb/library/actors/core/executor_thread.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/ydb/library/actors/core/executor_thread.h b/ydb/library/actors/core/executor_thread.h
index 2e325a7143..750eac126f 100644
--- a/ydb/library/actors/core/executor_thread.h
+++ b/ydb/library/actors/core/executor_thread.h
@@ -44,6 +44,17 @@ namespace NActors {
ui32 eventsPerMailbox = DEFAULT_EVENTS_PER_MAILBOX);
TExecutorThread(TWorkerId workerId,
+ TWorkerId cpuId,
+ TActorSystem* actorSystem,
+ IExecutorPool* executorPool,
+ TMailboxTable* mailboxTable,
+ const TString& threadName,
+ TDuration timePerMailbox = DEFAULT_TIME_PER_MAILBOX,
+ ui32 eventsPerMailbox = DEFAULT_EVENTS_PER_MAILBOX)
+ : TExecutorThread(workerId, cpuId, actorSystem, executorPool, mailboxTable, nullptr, threadName, timePerMailbox, eventsPerMailbox)
+ {}
+
+ TExecutorThread(TWorkerId workerId,
TActorSystem* actorSystem,
IExecutorPool* executorPool,
TMailboxTable* mailboxTable,
@@ -55,6 +66,16 @@ namespace NActors {
{}
TExecutorThread(TWorkerId workerId,
+ TActorSystem* actorSystem,
+ IExecutorPool* executorPool,
+ TMailboxTable* mailboxTable,
+ const TString& threadName,
+ TDuration timePerMailbox = DEFAULT_TIME_PER_MAILBOX,
+ ui32 eventsPerMailbox = DEFAULT_EVENTS_PER_MAILBOX)
+ : TExecutorThread(workerId, 0, actorSystem, executorPool, mailboxTable, nullptr, threadName, timePerMailbox, eventsPerMailbox)
+ {}
+
+ TExecutorThread(TWorkerId workerId,
TActorSystem* actorSystem,
TExecutorThreadCtx *threadCtx,
i16 poolCount,