Query: bind_to_cpu
OS: osf1
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
bind_to_cpu(3) Library Functions Manual bind_to_cpu(3)NAMEbind_to_cpu - Bind execution to a specific CPU.LIBRARYMach Library (libmach.a)SYNOPSIS#include <sys/types.h> #include <sys/resource.h> int bind_to_cpu( pid_t pid, unsigned long cpu_mask , unsigned long flag );PARAMETERSSpecifies the target pid. You must have access rights to the pid. Specifies the CPU on which the thread should run. The target CPU is the bit index in the mask. If you set more than one bit, an error is generated. A cpu_mask of zero clears any previously set CPU binding. Specifies options to CPU binding. Currently only the option BIND_NO_INHERIT is supported. When set, this option causes child processes and threads to not inherit the CPU binding.DESCRIPTIONUpon return from bind_to_cpu, all threads of the target pid are running on the target CPU. Bound threads are not eligible for execution on any other CPU. You release CPU binding by invoking bind_to_cpu with a cpu_mask of zero.EXAMPLES/* * Fork child process and force it to run on cpu number 3. * Processes created by the forked child will not inherit bindings. */ #include <sys/resource.h> #include <sys/sysinfo.h> #include <sys/signal.h> #include <sys/types.h> #define CPU_3 0x8 /* Bit 3 set */ main() { pid_t pid; if (pid = fork()) { /* parent */ if (bind_to_cpu(pid, CPU_3, BIND_NO_INHERIT)) { kill(pid, SIGKILL); exit(1); /* bind_to_cpu() will print error msg */ } sleep(2); /* wait for child to print CPU */ } else { /* child */ long cpu_num; sleep(1); /* wait for parent to bind CPU */ getsysinfo(GSI_CURRENT_CPU, &cpu_num, 0L, 0L, 0L); printf("child running on CPU %d ", cpu_num); } } In this example, the CPU_3 symbol is defined so that bit three in the bit mask is set. When the pid returned from the fork routine identi- fies the parent routine, the bind_to_cpu routine is called. This routine binds the child process to CPU number three, as specified in the CPU_3 symbol. When the pid returned from the fork routine identifies the child routine, the child routine sleeps to give the parent routine time to set its CPU binding. Then it uses the getsysinfo call to determine its CPU and displays its CPU with the printf routine. If the return value from the bind_to_cpu routine indicates an error, the parent process kills the child process and exits with an error status.RETURN VALUESUpon successful completion, bind_to_cpu returns zero. Upon error, a -1 is returned.RELATED INFORMATIONCommands: runon(1) Functions: getsysinfo(2) delim off bind_to_cpu(3)
Related Man Pages |
---|
fork(2) - bsd |
fork(2) - ultrix |
sched_setaffinity(2) - suse |
bind_to_cpu(3) - osf1 |
psrset(8) - netbsd |
Similar Topics in the Unix Linux Community |
---|
PIDs of background process |
what the getppid of parent process print |
86% CPU for wait |
Determine which file is invoking process? |
Help! CPU consumption - %usr and %sys ?? |