git: f19c4e23413d - main - linux(4): Change semtimedop syscall definition to match Linux actual one.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 06 May 2022 17:03:38 UTC
The branch main has been updated by dchagin: URL: https://cgit.FreeBSD.org/src/commit/?id=f19c4e23413d9e2661d09120bb5434c54593bb8e commit f19c4e23413d9e2661d09120bb5434c54593bb8e Author: Dmitry Chagin <dchagin@FreeBSD.org> AuthorDate: 2022-05-06 17:01:43 +0000 Commit: Dmitry Chagin <dchagin@FreeBSD.org> CommitDate: 2022-05-06 17:01:43 +0000 linux(4): Change semtimedop syscall definition to match Linux actual one. MFC after: 2 weeks --- sys/amd64/linux/syscalls.master | 7 ++++++- sys/amd64/linux32/syscalls.master | 7 ++++++- sys/arm64/linux/syscalls.master | 7 ++++++- sys/i386/linux/syscalls.master | 7 ++++++- 4 files changed, 24 insertions(+), 4 deletions(-) diff --git a/sys/amd64/linux/syscalls.master b/sys/amd64/linux/syscalls.master index 9cb2a899d882..896bbcc5e652 100644 --- a/sys/amd64/linux/syscalls.master +++ b/sys/amd64/linux/syscalls.master @@ -1282,7 +1282,12 @@ int linux_restart_syscall(void); } 220 AUE_NULL STD { - int linux_semtimedop(void); + int linux_semtimedop( + l_int semid, + struct sembuf *tsops, + l_size_t nsops, + struct l_timespec *timeout + ); } 221 AUE_NULL STD { int linux_fadvise64( diff --git a/sys/amd64/linux32/syscalls.master b/sys/amd64/linux32/syscalls.master index 0a9f408ed92e..317f590de557 100644 --- a/sys/amd64/linux32/syscalls.master +++ b/sys/amd64/linux32/syscalls.master @@ -2449,7 +2449,12 @@ int linux_mq_timedreceive_time64(void); } 420 AUE_NULL STD { - int linux_semtimedop_time64(void); + int linux_semtimedop_time64( + l_int semid, + struct sembuf *tsops, + l_size_t nsops, + struct l_timespec64 *timeout + ); } 421 AUE_NULL STD { int linux_rt_sigtimedwait_time64( diff --git a/sys/arm64/linux/syscalls.master b/sys/arm64/linux/syscalls.master index efdc98771e05..0e0e14e8c633 100644 --- a/sys/arm64/linux/syscalls.master +++ b/sys/arm64/linux/syscalls.master @@ -1135,7 +1135,12 @@ ); } 192 AUE_NULL STD { - int linux_semtimedop(void); + int linux_semtimedop( + l_int semid, + struct sembuf *tsops, + l_size_t nsops, + struct l_timespec *timeout + ); } 193 AUE_NULL NOPROTO { int semop( diff --git a/sys/i386/linux/syscalls.master b/sys/i386/linux/syscalls.master index b082fa6c423c..601252054670 100644 --- a/sys/i386/linux/syscalls.master +++ b/sys/i386/linux/syscalls.master @@ -2467,7 +2467,12 @@ int linux_mq_timedreceive_time64(void); } 420 AUE_NULL STD { - int linux_semtimedop_time64(void); + int linux_semtimedop_time64( + l_int semid, + struct sembuf *tsops, + l_size_t nsops, + struct l_timespec64 *timeout + ); } 421 AUE_NULL STD { int linux_rt_sigtimedwait_time64(