Skip to content

Commit 0f3692c

Browse files
authored
fix multicore on Linux (thread affinity) (#155)
fix: Set thread affinity for worker threads Fixes #154
1 parent ec3c32c commit 0f3692c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

source/task_scheduler.cpp

+4-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ FTL_THREAD_FUNC_RETURN_TYPE TaskScheduler::ThreadStartFunc(void *const arg) {
5353
auto *const threadArgs = reinterpret_cast<ThreadStartArgs *>(arg);
5454
TaskScheduler *taskScheduler = threadArgs->Scheduler;
5555
unsigned const index = threadArgs->ThreadIndex;
56-
56+
SetCurrentThreadAffinity(index);
5757
// Clean up
5858
delete threadArgs;
5959

@@ -332,8 +332,10 @@ int TaskScheduler::Init(TaskSchedulerInitOptions options) {
332332
m_callbacks.OnFibersCreated(m_callbacks.Context, options.FiberPoolSize);
333333
}
334334

335-
// Set the properties for the current thread
335+
// Set the properties for the main thread
336+
336337
SetCurrentThreadAffinity(0);
338+
337339
m_threads[0] = GetCurrentThread();
338340
#if defined(FTL_WIN32_THREADS)
339341
// Set the thread handle to INVALID_HANDLE_VALUE

0 commit comments

Comments
 (0)