I want to know if with the ARMV8 architecture in SMP mode I can create thereads and associate each thread with a core.for example I want to create a thread 1 which contains an X function and I want this function executed on core 3.
Hi @Rifakst,
Doing "thread pinning" as you describe is certainly possible on Armv8-A SMP platforms.
This will depend more on your operating system than on Arm architecture specificites.
Under Linux for example, this could be done with the taskset command, or with the pthread_setaffinity_np() function.
Best regards,
Vincent.
Thank you for your reply Vincent,I work on ARMV8 cortex-A72, on windows with the Codewarrio software.
on these platforms can I use the same function?
Best regards
Rifakst