Add entries for the cpuset-related system calls. The existing system calls

can be used on little endian systems.

Pointy hat to:	jeff
This commit is contained in:
John Baldwin 2008-03-25 19:34:47 +00:00
parent 54e2ebdfc2
commit 30c6422a8a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=177612

View file

@ -797,3 +797,15 @@
482 AUE_SHMOPEN NOPROTO { int shm_open(const char *path, int flags, \
mode_t mode); }
483 AUE_SHMUNLINK NOPROTO { int shm_unlink(const char *path); }
484 AUE_NULL NOPROTO { int cpuset(cpusetid_t *setid); }
485 AUE_NULL NOPROTO { int cpuset_setid(cpuwhich_t which, id_t id, \
cpusetid_t setid); }
486 AUE_NULL NOPROTO { int cpuset_getid(cpulevel_t level, \
cpuwhich_t which, id_t id, \
cpusetid_t *setid); }
487 AUE_NULL NOPROTO { int cpuset_getaffinity(cpulevel_t level, \
cpuwhich_t which, id_t id, size_t cpusetsize, \
cpuset_t *mask); }
488 AUE_NULL NOPROTO { int cpuset_setaffinity(cpulevel_t level, \
cpuwhich_t which, id_t id, size_t cpusetsize, \
const cpuset_t *mask); }