After checking the ELF format, it seems that there is no region indicates which CPU will execute this file.
My question is:
Can we assign a particular CPU to an ELF? If yes, how can I do that?
After checking the ELF format, it seems that there is no region indicates which CPU will execute this file.
My question is:
Can we assign a particular CPU to an ELF? If yes, how can I do that?
No.
Depends on the OS.
On Linux, you can call sched_setaffinity to bind a process to a set of CPUs, or pthread_setaffinity_np to bind a thread to a set of CPUs (note: neither call is portable to other OSes).