linux(4): Regen for ppoll_time64 syscall.

MFC after:		2 weeks
This commit is contained in:
Dmitry Chagin 2022-05-08 13:38:17 +03:00
parent 94f5f150ef
commit 61f45f6733
2 changed files with 3 additions and 3 deletions

View file

@ -1584,7 +1584,7 @@ struct linux_pselect6_time64_args {
struct linux_ppoll_time64_args {
char fds_l_[PADL_(struct pollfd *)]; struct pollfd * fds; char fds_r_[PADR_(struct pollfd *)];
char nfds_l_[PADL_(uint32_t)]; uint32_t nfds; char nfds_r_[PADR_(uint32_t)];
char tsp_l_[PADL_(struct l_timespec *)]; struct l_timespec * tsp; char tsp_r_[PADR_(struct l_timespec *)];
char tsp_l_[PADL_(struct l_timespec64 *)]; struct l_timespec64 * tsp; char tsp_r_[PADR_(struct l_timespec64 *)];
char sset_l_[PADL_(l_sigset_t *)]; l_sigset_t * sset; char sset_r_[PADR_(l_sigset_t *)];
char ssize_l_[PADL_(l_size_t)]; l_size_t ssize; char ssize_r_[PADR_(l_size_t)];
};

View file

@ -3068,7 +3068,7 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
struct linux_ppoll_time64_args *p = params;
uarg[a++] = (intptr_t)p->fds; /* struct pollfd * */
uarg[a++] = p->nfds; /* uint32_t */
uarg[a++] = (intptr_t)p->tsp; /* struct l_timespec * */
uarg[a++] = (intptr_t)p->tsp; /* struct l_timespec64 * */
uarg[a++] = (intptr_t)p->sset; /* l_sigset_t * */
iarg[a++] = p->ssize; /* l_size_t */
*n_args = 5;
@ -8274,7 +8274,7 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
p = "uint32_t";
break;
case 2:
p = "userland struct l_timespec *";
p = "userland struct l_timespec64 *";
break;
case 3:
p = "userland l_sigset_t *";