File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ FTL_THREAD_FUNC_RETURN_TYPE TaskScheduler::ThreadStartFunc(void *const arg) {
53
53
auto *const threadArgs = reinterpret_cast <ThreadStartArgs *>(arg);
54
54
TaskScheduler *taskScheduler = threadArgs->Scheduler ;
55
55
unsigned const index = threadArgs->ThreadIndex ;
56
-
56
+ SetCurrentThreadAffinity ( index );
57
57
// Clean up
58
58
delete threadArgs;
59
59
@@ -332,8 +332,10 @@ int TaskScheduler::Init(TaskSchedulerInitOptions options) {
332
332
m_callbacks.OnFibersCreated (m_callbacks.Context , options.FiberPoolSize );
333
333
}
334
334
335
- // Set the properties for the current thread
335
+ // Set the properties for the main thread
336
+
336
337
SetCurrentThreadAffinity (0 );
338
+
337
339
m_threads[0 ] = GetCurrentThread ();
338
340
#if defined(FTL_WIN32_THREADS)
339
341
// Set the thread handle to INVALID_HANDLE_VALUE
You can’t perform that action at this time.
0 commit comments