summaryrefslogtreecommitdiffstats
path: root/sys/kern/syscalls.master
diff options
context:
space:
mode:
authorru <ru@FreeBSD.org>2008-03-25 09:11:53 +0000
committerru <ru@FreeBSD.org>2008-03-25 09:11:53 +0000
commit4feaeed265cdcf81445678e2f9468458e440cd5f (patch)
tree6648bfd3e3d0d414078c196b5faa15196cdf3f60 /sys/kern/syscalls.master
parent59900e5206efb55f5382482d47a2f300d8a2b972 (diff)
downloadFreeBSD-src-4feaeed265cdcf81445678e2f9468458e440cd5f.zip
FreeBSD-src-4feaeed265cdcf81445678e2f9468458e440cd5f.tar.gz
Fixed type of the fourth argument of cpuset_{get,set}affinity(2) to be size_t.
Prodded by: davidxu
Diffstat (limited to 'sys/kern/syscalls.master')
-rw-r--r--sys/kern/syscalls.master8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master
index 59ef46e..508feaa 100644
--- a/sys/kern/syscalls.master
+++ b/sys/kern/syscalls.master
@@ -852,11 +852,11 @@
cpuwhich_t which, id_t id, \
cpusetid_t *setid); }
487 AUE_NULL STD { int cpuset_getaffinity(cpulevel_t level, \
- cpuwhich_t which, id_t id, int cpusetsize, \
- long *mask); }
+ cpuwhich_t which, id_t id, size_t cpusetsize, \
+ cpuset_t *mask); }
488 AUE_NULL STD { int cpuset_setaffinity(cpulevel_t level, \
- cpuwhich_t which, id_t id, int cpusetsize, \
- long *mask); }
+ cpuwhich_t which, id_t id, size_t cpusetsize, \
+ const cpuset_t *mask); }
; Please copy any additions and changes to the following compatability tables:
; sys/compat/freebsd32/syscalls.master
OpenPOWER on IntegriCloud