git: 1508b1b6a022 - main - linux(4): Change timer_settime64 syscall definition to match Linux actual one.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 04 May 2022 10:08:10 UTC
The branch main has been updated by dchagin:
URL: https://cgit.FreeBSD.org/src/commit/?id=1508b1b6a022592e214a2ed2ed52e6100e84de35
commit 1508b1b6a022592e214a2ed2ed52e6100e84de35
Author: Dmitry Chagin <dchagin@FreeBSD.org>
AuthorDate: 2022-05-04 10:06:48 +0000
Commit: Dmitry Chagin <dchagin@FreeBSD.org>
CommitDate: 2022-05-04 10:06:48 +0000
linux(4): Change timer_settime64 syscall definition to match Linux actual one.
MFC after: 2 weeks
---
sys/amd64/linux32/syscalls.master | 7 ++++++-
sys/i386/linux/syscalls.master | 7 ++++++-
2 files changed, 12 insertions(+), 2 deletions(-)
diff --git a/sys/amd64/linux32/syscalls.master b/sys/amd64/linux32/syscalls.master
index 965e1e90ee4e..da82270c8ba2 100644
--- a/sys/amd64/linux32/syscalls.master
+++ b/sys/amd64/linux32/syscalls.master
@@ -2381,7 +2381,12 @@
);
}
409 AUE_NULL STD {
- int linux_timer_settime64(void);
+ int linux_timer_settime64(
+ l_timer_t timerid,
+ l_int flags,
+ const struct l_itimerspec64 *new,
+ struct l_itimerspec64 *old
+ );
}
410 AUE_NULL STD {
int linux_timerfd_gettime64(void);
diff --git a/sys/i386/linux/syscalls.master b/sys/i386/linux/syscalls.master
index 94c9ebfb2ae8..4c1c9f1b895a 100644
--- a/sys/i386/linux/syscalls.master
+++ b/sys/i386/linux/syscalls.master
@@ -2399,7 +2399,12 @@
);
}
409 AUE_NULL STD {
- int linux_timer_settime64(void);
+ int linux_timer_settime64(
+ l_timer_t timerid,
+ l_int flags,
+ const struct l_itimerspec64 *new,
+ struct l_itimerspec64 *old
+ );
}
410 AUE_NULL STD {
int linux_timerfd_gettime64(void);