The branch main has been updated by trasz: URL: https://cgit.FreeBSD.org/src/commit/?id=2561da0636c1b8504d05246258a5333b621a2433
commit 2561da0636c1b8504d05246258a5333b621a2433 Author: Edward Tomasz Napierala <[email protected]> AuthorDate: 2021-07-21 12:20:45 +0000 Commit: Edward Tomasz Napierala <[email protected]> CommitDate: 2021-07-21 12:21:28 +0000 linux: Fix declaration of rt_sigreturn() on arm64 On Linux, this syscall doesn't take any arguments; instead it assumes the context was put on the stack. Reviewed By: dchagin Sponsored By: EPSRC Differential Revision: https://reviews.freebsd.org/D31251 --- sys/arm64/linux/syscalls.master | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/sys/arm64/linux/syscalls.master b/sys/arm64/linux/syscalls.master index dcb43553e469..ca45e33d4190 100644 --- a/sys/arm64/linux/syscalls.master +++ b/sys/arm64/linux/syscalls.master @@ -842,9 +842,7 @@ ); } 139 AUE_NULL STD { - int linux_rt_sigreturn( - struct l_ucontext *ucp - ); + int linux_rt_sigreturn(void); } 140 AUE_SETPRIORITY NOPROTO { int setpriority( _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/dev-commits-src-all To unsubscribe, send any mail to "[email protected]"
