Binds a thread to a particular CPU on a multiprocessor system.
cma_thread_bind_to_cpu(
                        thread,
                        cpu_mask);
 
Argument         Data Type               Access
thread           opaque cma_t_thread     read
cpu_mask         unsigned long           read
#includevoid cma_thread_bind_to_cpu ( cma_t_thread *thread, unsigned long cpu_mask);
Specify a cpu_mask of 0 to allow a previously bound thread to execute on any available CPU.
This routine is not available on all platforms. If it is not available, it will raise the cma_e_unimp exception.
cma_e_badparam cma_e_unimp