aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/syscalls.master
diff options
context:
space:
mode:
authorAlan Somers <asomers@FreeBSD.org>2021-01-05 23:28:23 +0000
committerAlan Somers <asomers@FreeBSD.org>2021-01-08 02:49:27 +0000
commitb3286afae364c065183da3a910a33db3032529d4 (patch)
tree7e766b15575b61382aa195f4c3d64032bc083fa5 /sys/kern/syscalls.master
parenta28fcd1c636085993847fda8b08798128f8fbf3c (diff)
downloadsrc-b3286afae364c065183da3a910a33db3032529d4.tar.gz
src-b3286afae364c065183da3a910a33db3032529d4.zip
Reallocate syscall numbers for aio_writev and aio_readv
The originally chosen numbers interfere with downstream projects' syscalls. Move them to the end of the syscall table instead. Reported by: jrtc27 Reviewed by: brooks MFC-With: 022ca2fc7fe08d51f33a1d23a9be49e6d132914e Differential Revision: 022ca2fc7fe08d51f33a1d23a9be49e6d132914e
Diffstat (limited to 'sys/kern/syscalls.master')
-rw-r--r--sys/kern/syscalls.master22
1 files changed, 11 insertions, 11 deletions
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master
index aaa0a1277461..5c6ebeb9b52f 100644
--- a/sys/kern/syscalls.master
+++ b/sys/kern/syscalls.master
@@ -1477,17 +1477,7 @@
_In_opt_ struct sigevent *sig
);
}
-258 AUE_AIO_WRITEV STD {
- int aio_writev(
- _Inout_ struct aiocb *aiocbp
- );
- }
-259 AUE_AIO_READV STD {
- int aio_readv(
- _Inout_ struct aiocb *aiocbp
- );
- }
-260-271 AUE_NULL UNIMPL nosys
+258-271 AUE_NULL UNIMPL nosys
272 AUE_O_GETDENTS COMPAT11 {
int getdents(
int fd,
@@ -3258,6 +3248,16 @@
size_t len
);
}
+578 AUE_AIO_WRITEV STD {
+ int aio_writev(
+ _Inout_ struct aiocb *aiocbp
+ );
+ }
+579 AUE_AIO_READV STD {
+ int aio_readv(
+ _Inout_ struct aiocb *aiocbp
+ );
+ }
; Please copy any additions and changes to the following compatability tables:
; sys/compat/freebsd32/syscalls.master