git: f9253615407a - stable/13 - linux(4): Change timer_gettime64 syscall definition to match Linux actual one.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 17 Jun 2022 19:39:35 UTC
The branch stable/13 has been updated by dchagin: URL: https://cgit.FreeBSD.org/src/commit/?id=f9253615407aa7c31ca25761a4eaa60128e21e91 commit f9253615407aa7c31ca25761a4eaa60128e21e91 Author: Dmitry Chagin <dchagin@FreeBSD.org> AuthorDate: 2022-05-04 10:06:47 +0000 Commit: Dmitry Chagin <dchagin@FreeBSD.org> CommitDate: 2022-06-17 19:34:16 +0000 linux(4): Change timer_gettime64 syscall definition to match Linux actual one. MFC after: 2 weeks (cherry picked from commit ccec96033c5aa2f1dfd6c736daf3e493c2272af3) --- sys/amd64/linux32/syscalls.master | 5 ++++- sys/i386/linux/syscalls.master | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/sys/amd64/linux32/syscalls.master b/sys/amd64/linux32/syscalls.master index fc5f24813f7d..965e1e90ee4e 100644 --- a/sys/amd64/linux32/syscalls.master +++ b/sys/amd64/linux32/syscalls.master @@ -2375,7 +2375,10 @@ ); } 408 AUE_NULL STD { - int linux_timer_gettime64(void); + int linux_timer_gettime64( + l_timer_t timerid, + struct l_itimerspec64 *setting + ); } 409 AUE_NULL STD { int linux_timer_settime64(void); diff --git a/sys/i386/linux/syscalls.master b/sys/i386/linux/syscalls.master index d161e635ed7d..94c9ebfb2ae8 100644 --- a/sys/i386/linux/syscalls.master +++ b/sys/i386/linux/syscalls.master @@ -2393,7 +2393,10 @@ ); } 408 AUE_NULL STD { - int linux_timer_gettime64(void); + int linux_timer_gettime64( + l_timer_t timerid, + struct l_itimerspec64 *setting + ); } 409 AUE_NULL STD { int linux_timer_settime64(void);