git: 487ac6631fc3 - stable/13 - linux(4): Change timerfd_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:45 UTC
The branch stable/13 has been updated by dchagin:
URL: https://cgit.FreeBSD.org/src/commit/?id=487ac6631fc316d6da5780b67d963508b98c9a24
commit 487ac6631fc316d6da5780b67d963508b98c9a24
Author: Dmitry Chagin <dchagin@FreeBSD.org>
AuthorDate: 2022-05-04 10:06:51 +0000
Commit: Dmitry Chagin <dchagin@FreeBSD.org>
CommitDate: 2022-06-17 19:34:32 +0000
linux(4): Change timerfd_gettime64 syscall definition to match Linux actual one.
MFC after: 2 weeks
(cherry picked from commit 16aefe5ba3923991088f1a46e9d493664421a0a2)
---
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 ad6b61350a26..5c32ba0360fc 100644
--- a/sys/amd64/linux32/syscalls.master
+++ b/sys/amd64/linux32/syscalls.master
@@ -2389,7 +2389,10 @@
);
}
410 AUE_NULL STD {
- int linux_timerfd_gettime64(void);
+ int linux_timerfd_gettime64(
+ l_int fd,
+ struct l_itimerspec64 *old_value
+ );
}
411 AUE_NULL STD {
int linux_timerfd_settime64(
diff --git a/sys/i386/linux/syscalls.master b/sys/i386/linux/syscalls.master
index f37d40ef383c..471033aa046f 100644
--- a/sys/i386/linux/syscalls.master
+++ b/sys/i386/linux/syscalls.master
@@ -2407,7 +2407,10 @@
);
}
410 AUE_NULL STD {
- int linux_timerfd_gettime64(void);
+ int linux_timerfd_gettime64(
+ l_int fd,
+ struct l_itimerspec64 *old_value
+ );
}
411 AUE_NULL STD {
int linux_timerfd_settime64(