cpuset_getaffinity (2)
Leading comments
Copyright (c) 2008 Christian Brueffer Copyright (c) 2008 Jeffrey Roberson All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following discl...
NAME
cpuset_getaffinity cpuset_setaffinity - manage CPU affinityLIBRARY
Lb libcSYNOPSIS
In sys/param.h In sys/cpuset.h Ft int Fn cpuset_getaffinity cpulevel_t level cpuwhich_t which id_t id size_t setsize cpuset_t *mask Ft int Fn cpuset_setaffinity cpulevel_t level cpuwhich_t which id_t id size_t setsize const cpuset_t *maskDESCRIPTION
Fn cpuset_getaffinity and Fn cpuset_setaffinity allow the manipulation of sets of CPUs available to processes, threads, interrupts, jails and other resources. These functions may manipulate sets of CPUs that contain many processes or per-object anonymous masks that effect only a single object.The valid values for the Fa level and Fa which arguments are documented in cpuset(2). These arguments specify which object and which set of the object we are referring to. Not all possible combinations are valid. For example, only processes may belong to a numbered set accessed by a Fa level argument of CPU_LEVEL_CPUSET All resources, however, have a mask which may be manipulated with CPU_LEVEL_WHICH
Masks of type Ft cpuset_t are composed using the CPU_SET macros. The kernel tolerates large sets as long as all CPUs specified in the set exist. Sets smaller than the kernel uses generate an error on calls to Fn cpuset_getaffinity even if the result set would fit within the user supplied set. Calls to Fn cpuset_setaffinity tolerate small sets with no restrictions.
The supplied mask should have a size of Fa setsize bytes. This size is usually provided by calling sizeof(mask) which is ultimately determined by the value of CPU_SETSIZE as defined in In sys/cpuset.h .
Fn cpuset_getaffinity retrieves the mask from the object specified by Fa level , Fa which and Fa id and stores it in the space provided by Fa mask .
Fn cpuset_setaffinity attempts to set the mask for the object specified by Fa level , Fa which and Fa id to the value in Fa mask .
RETURN VALUES
Rv -stdERRORS
The following error codes may be set in errno- Bq Er EINVAL
- The Fa level or Fa which argument was not a valid value.
- Bq Er EINVAL
- The Fa mask argument specified when calling Fn cpuset_setaffinity was not a valid value.
- Bq Er EDEADLK
- The Fn cpuset_setaffinity call would leave a thread without a valid CPU to run on because the set does not overlap with the thread's anonymous mask.
- Bq Er EFAULT
- The mask pointer passed was invalid.
- Bq Er ESRCH
- The object specified by the Fa id and Fa which arguments could not be found.
- Bq Er ERANGE
- The Fa cpusetsize was either preposterously large or smaller than the kernel set size.
- Bq Er EPERM
- The calling process did not have the credentials required to complete the operation.