Can I bound an ELF to a particular CPU

51 Views Asked by At

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?

1

There are 1 best solutions below

2
On BEST ANSWER

Can we assign a particular CPU to an ELF?

No.

if i want to assign a program to a particular cpu, how can i do it?

Depends on the OS.

instead of use Linux command

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).