1
0
mirror of https://github.com/xmrig/xmrig.git synced 2025-12-08 08:23:34 -05:00

GhostRidere: set correct priority for helper threads

Fixes #2825
This commit is contained in:
SChernykh
2021-12-20 12:05:17 +01:00
parent 4bf65c8669
commit 93081eb1f6
3 changed files with 11 additions and 7 deletions

View File

@@ -100,7 +100,7 @@ xmrig::CpuWorker<N>::CpuWorker(size_t id, const CpuLaunchData &data) :
}
# ifdef XMRIG_ALGO_GHOSTRIDER
m_ghHelper = ghostrider::create_helper_thread(affinity(), data.affinities);
m_ghHelper = ghostrider::create_helper_thread(affinity(), data.priority, data.affinities);
# endif
}