Date: Sun, 8 May 2022 10:38:38 GMT From: Dmitry Chagin <dchagin@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 94f5f150ef59 - main - linux(4): Fix ppoll_time64 syscall definition. Message-ID: <202205081038.248AccJx028183@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by dchagin: URL: https://cgit.FreeBSD.org/src/commit/?id=94f5f150ef59d8e985bd529b0a6dea52ae8a7def commit 94f5f150ef59d8e985bd529b0a6dea52ae8a7def Author: Dmitry Chagin <dchagin@FreeBSD.org> AuthorDate: 2022-05-08 10:37:48 +0000 Commit: Dmitry Chagin <dchagin@FreeBSD.org> CommitDate: 2022-05-08 10:37:48 +0000 linux(4): Fix ppoll_time64 syscall definition. Fixed my typo in ed61e0ce1d. Here tsp is a pointer to the 64-bit timespec. MFC after: 2 weeks --- sys/amd64/linux32/syscalls.master | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/amd64/linux32/syscalls.master b/sys/amd64/linux32/syscalls.master index 317f590de557..01e806433672 100644 --- a/sys/amd64/linux32/syscalls.master +++ b/sys/amd64/linux32/syscalls.master @@ -2424,7 +2424,7 @@ int linux_ppoll_time64( struct pollfd *fds, uint32_t nfds, - struct l_timespec *tsp, + struct l_timespec64 *tsp, l_sigset_t *sset, l_size_t ssize );
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202205081038.248AccJx028183>