linux(4): Change timer_settime64 syscall definition to match Linux actual one.

MFC after:		2 weeks
This commit is contained in:
Dmitry Chagin 2022-05-04 13:06:48 +03:00
parent 783c1bd8cb
commit 1508b1b6a0
2 changed files with 12 additions and 2 deletions

View file

@ -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);

View file

@ -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);