git: ccec96033c5a - main - linux(4): Change timer_gettime64 syscall definition to match Linux actual one.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 04 May 2022 10:08:07 UTC
The branch main has been updated by dchagin: URL: https://cgit.FreeBSD.org/src/commit/?id=ccec96033c5aa2f1dfd6c736daf3e493c2272af3 commit ccec96033c5aa2f1dfd6c736daf3e493c2272af3 Author: Dmitry Chagin <dchagin@FreeBSD.org> AuthorDate: 2022-05-04 10:06:47 +0000 Commit: Dmitry Chagin <dchagin@FreeBSD.org> CommitDate: 2022-05-04 10:06:47 +0000 linux(4): Change timer_gettime64 syscall definition to match Linux actual one. MFC after: 2 weeks --- 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);