Encode on Core 0 AND Core 2

This commit is contained in:
Maschell 2018-07-13 19:17:20 +02:00
parent c7c7aefe1f
commit 364f45854c
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ OSMessage encodeQueueMessages[ENCODE_QUEUE_MESSAGE_COUNT] __attribute__((section
void EncodingHelper::StartAsyncThread() {
int32_t priority = 31;
this->pThread = CThread::create(DoAsyncThread, this, CThread::eAttributeAffCore0, priority,0x40000);
this->pThread = CThread::create(DoAsyncThread, this, CThread::eAttributeAffCore0 |CThread::eAttributeAffCore2 , priority,0x40000);
this->pThread->resumeThread();
}