git: e54a870e358e - main - freebsd32: make semsys take int arguments
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 22 Nov 2021 22:37:29 UTC
The branch main has been updated by brooks:
URL: https://cgit.FreeBSD.org/src/commit/?id=e54a870e358e4891875e80a696a6fa0bca136902
commit e54a870e358e4891875e80a696a6fa0bca136902
Author: Brooks Davis <brooks@FreeBSD.org>
AuthorDate: 2021-11-22 22:36:54 +0000
Commit: Brooks Davis <brooks@FreeBSD.org>
CommitDate: 2021-11-22 22:36:54 +0000
freebsd32: make semsys take int arguments
This matches the default ABI.
Reviewed by: kib
---
sys/compat/freebsd32/syscalls.master | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys/compat/freebsd32/syscalls.master b/sys/compat/freebsd32/syscalls.master
index a97b8fc12eb4..18b58ad91874 100644
--- a/sys/compat/freebsd32/syscalls.master
+++ b/sys/compat/freebsd32/syscalls.master
@@ -343,8 +343,8 @@
int a3, int a4, int a5); }
170 AUE_MSGSYS NOSTD { int freebsd32_msgsys(int which, int a2, \
int a3, int a4, int a5, int a6); }
-171 AUE_SHMSYS NOSTD { int freebsd32_shmsys(uint32_t which, uint32_t a2, \
- uint32_t a3, uint32_t a4); }
+171 AUE_SHMSYS NOSTD { int freebsd32_shmsys(int which, int a2, \
+ int a3, int a4); }
172 AUE_NULL RESERVED
173 AUE_PREAD COMPAT6 { ssize_t freebsd32_pread(int fd, void *buf, \
size_t nbyte, int pad, \