Regen after r314291 (timerfd definition).
MFC after: 1 month
This commit is contained in:
parent
1064d53fde
commit
354aa2dd56
@ -1000,7 +1000,8 @@ struct linux_signalfd_args {
|
||||
register_t dummy;
|
||||
};
|
||||
struct linux_timerfd_create_args {
|
||||
register_t dummy;
|
||||
char clockid_l_[PADL_(l_int)]; l_int clockid; char clockid_r_[PADR_(l_int)];
|
||||
char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
|
||||
};
|
||||
struct linux_eventfd_args {
|
||||
char initval_l_[PADL_(l_uint)]; l_uint initval; char initval_r_[PADR_(l_uint)];
|
||||
@ -1012,10 +1013,14 @@ struct linux_fallocate_args {
|
||||
char len_l_[PADL_(l_loff_t)]; l_loff_t len; char len_r_[PADR_(l_loff_t)];
|
||||
};
|
||||
struct linux_timerfd_settime_args {
|
||||
register_t dummy;
|
||||
char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
|
||||
char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
|
||||
char new_value_l_[PADL_(const struct l_itimerspec *)]; const struct l_itimerspec * new_value; char new_value_r_[PADR_(const struct l_itimerspec *)];
|
||||
char old_value_l_[PADL_(struct l_itimerspec *)]; struct l_itimerspec * old_value; char old_value_r_[PADR_(struct l_itimerspec *)];
|
||||
};
|
||||
struct linux_timerfd_gettime_args {
|
||||
register_t dummy;
|
||||
char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
|
||||
char old_value_l_[PADL_(struct l_itimerspec *)]; struct l_itimerspec * old_value; char old_value_r_[PADR_(struct l_itimerspec *)];
|
||||
};
|
||||
struct linux_accept4_args {
|
||||
char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
|
||||
|
@ -300,11 +300,11 @@ struct sysent linux_sysent[] = {
|
||||
{ AS(linux_utimensat_args), (sy_call_t *)linux_utimensat, AUE_FUTIMESAT, NULL, 0, 0, 0, SY_THR_STATIC }, /* 280 = linux_utimensat */
|
||||
{ AS(linux_epoll_pwait_args), (sy_call_t *)linux_epoll_pwait, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 281 = linux_epoll_pwait */
|
||||
{ 0, (sy_call_t *)linux_signalfd, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 282 = linux_signalfd */
|
||||
{ 0, (sy_call_t *)linux_timerfd_create, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 283 = linux_timerfd_create */
|
||||
{ AS(linux_timerfd_create_args), (sy_call_t *)linux_timerfd_create, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 283 = linux_timerfd_create */
|
||||
{ AS(linux_eventfd_args), (sy_call_t *)linux_eventfd, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 284 = linux_eventfd */
|
||||
{ AS(linux_fallocate_args), (sy_call_t *)linux_fallocate, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 285 = linux_fallocate */
|
||||
{ 0, (sy_call_t *)linux_timerfd_settime, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 286 = linux_timerfd_settime */
|
||||
{ 0, (sy_call_t *)linux_timerfd_gettime, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 287 = linux_timerfd_gettime */
|
||||
{ AS(linux_timerfd_settime_args), (sy_call_t *)linux_timerfd_settime, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 286 = linux_timerfd_settime */
|
||||
{ AS(linux_timerfd_gettime_args), (sy_call_t *)linux_timerfd_gettime, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 287 = linux_timerfd_gettime */
|
||||
{ AS(linux_accept4_args), (sy_call_t *)linux_accept4, AUE_ACCEPT, NULL, 0, 0, 0, SY_THR_STATIC }, /* 288 = linux_accept4 */
|
||||
{ 0, (sy_call_t *)linux_signalfd4, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 289 = linux_signalfd4 */
|
||||
{ AS(linux_eventfd2_args), (sy_call_t *)linux_eventfd2, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 290 = linux_eventfd2 */
|
||||
|
@ -2078,7 +2078,10 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
|
||||
}
|
||||
/* linux_timerfd_create */
|
||||
case 283: {
|
||||
*n_args = 0;
|
||||
struct linux_timerfd_create_args *p = params;
|
||||
iarg[0] = p->clockid; /* l_int */
|
||||
iarg[1] = p->flags; /* l_int */
|
||||
*n_args = 2;
|
||||
break;
|
||||
}
|
||||
/* linux_eventfd */
|
||||
@ -2100,12 +2103,20 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
|
||||
}
|
||||
/* linux_timerfd_settime */
|
||||
case 286: {
|
||||
*n_args = 0;
|
||||
struct linux_timerfd_settime_args *p = params;
|
||||
iarg[0] = p->fd; /* l_int */
|
||||
iarg[1] = p->flags; /* l_int */
|
||||
uarg[2] = (intptr_t) p->new_value; /* const struct l_itimerspec * */
|
||||
uarg[3] = (intptr_t) p->old_value; /* struct l_itimerspec * */
|
||||
*n_args = 4;
|
||||
break;
|
||||
}
|
||||
/* linux_timerfd_gettime */
|
||||
case 287: {
|
||||
*n_args = 0;
|
||||
struct linux_timerfd_gettime_args *p = params;
|
||||
iarg[0] = p->fd; /* l_int */
|
||||
uarg[1] = (intptr_t) p->old_value; /* struct l_itimerspec * */
|
||||
*n_args = 2;
|
||||
break;
|
||||
}
|
||||
/* linux_accept4 */
|
||||
@ -5644,6 +5655,16 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
|
||||
break;
|
||||
/* linux_timerfd_create */
|
||||
case 283:
|
||||
switch(ndx) {
|
||||
case 0:
|
||||
p = "l_int";
|
||||
break;
|
||||
case 1:
|
||||
p = "l_int";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
};
|
||||
break;
|
||||
/* linux_eventfd */
|
||||
case 284:
|
||||
@ -5676,9 +5697,35 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
|
||||
break;
|
||||
/* linux_timerfd_settime */
|
||||
case 286:
|
||||
switch(ndx) {
|
||||
case 0:
|
||||
p = "l_int";
|
||||
break;
|
||||
case 1:
|
||||
p = "l_int";
|
||||
break;
|
||||
case 2:
|
||||
p = "userland const struct l_itimerspec *";
|
||||
break;
|
||||
case 3:
|
||||
p = "userland struct l_itimerspec *";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
};
|
||||
break;
|
||||
/* linux_timerfd_gettime */
|
||||
case 287:
|
||||
switch(ndx) {
|
||||
case 0:
|
||||
p = "l_int";
|
||||
break;
|
||||
case 1:
|
||||
p = "userland struct l_itimerspec *";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
};
|
||||
break;
|
||||
/* linux_accept4 */
|
||||
case 288:
|
||||
@ -7494,6 +7541,9 @@ systrace_return_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
|
||||
case 282:
|
||||
/* linux_timerfd_create */
|
||||
case 283:
|
||||
if (ndx == 0 || ndx == 1)
|
||||
p = "int";
|
||||
break;
|
||||
/* linux_eventfd */
|
||||
case 284:
|
||||
if (ndx == 0 || ndx == 1)
|
||||
@ -7506,8 +7556,14 @@ systrace_return_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
|
||||
break;
|
||||
/* linux_timerfd_settime */
|
||||
case 286:
|
||||
if (ndx == 0 || ndx == 1)
|
||||
p = "int";
|
||||
break;
|
||||
/* linux_timerfd_gettime */
|
||||
case 287:
|
||||
if (ndx == 0 || ndx == 1)
|
||||
p = "int";
|
||||
break;
|
||||
/* linux_accept4 */
|
||||
case 288:
|
||||
if (ndx == 0 || ndx == 1)
|
||||
|
@ -1062,7 +1062,8 @@ struct linux_signalfd_args {
|
||||
register_t dummy;
|
||||
};
|
||||
struct linux_timerfd_create_args {
|
||||
register_t dummy;
|
||||
char clockid_l_[PADL_(l_int)]; l_int clockid; char clockid_r_[PADR_(l_int)];
|
||||
char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
|
||||
};
|
||||
struct linux_eventfd_args {
|
||||
char initval_l_[PADL_(l_uint)]; l_uint initval; char initval_r_[PADR_(l_uint)];
|
||||
@ -1074,10 +1075,14 @@ struct linux_fallocate_args {
|
||||
char len_l_[PADL_(l_loff_t)]; l_loff_t len; char len_r_[PADR_(l_loff_t)];
|
||||
};
|
||||
struct linux_timerfd_settime_args {
|
||||
register_t dummy;
|
||||
char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
|
||||
char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
|
||||
char new_value_l_[PADL_(const struct l_itimerspec *)]; const struct l_itimerspec * new_value; char new_value_r_[PADR_(const struct l_itimerspec *)];
|
||||
char old_value_l_[PADL_(struct l_itimerspec *)]; struct l_itimerspec * old_value; char old_value_r_[PADR_(struct l_itimerspec *)];
|
||||
};
|
||||
struct linux_timerfd_gettime_args {
|
||||
register_t dummy;
|
||||
char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
|
||||
char old_value_l_[PADL_(struct l_itimerspec *)]; struct l_itimerspec * old_value; char old_value_r_[PADR_(struct l_itimerspec *)];
|
||||
};
|
||||
struct linux_signalfd4_args {
|
||||
register_t dummy;
|
||||
|
@ -340,11 +340,11 @@ struct sysent linux32_sysent[] = {
|
||||
{ AS(linux_epoll_pwait_args), (sy_call_t *)linux_epoll_pwait, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 319 = linux_epoll_pwait */
|
||||
{ AS(linux_utimensat_args), (sy_call_t *)linux_utimensat, AUE_FUTIMESAT, NULL, 0, 0, 0, SY_THR_STATIC }, /* 320 = linux_utimensat */
|
||||
{ 0, (sy_call_t *)linux_signalfd, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 321 = linux_signalfd */
|
||||
{ 0, (sy_call_t *)linux_timerfd_create, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 322 = linux_timerfd_create */
|
||||
{ AS(linux_timerfd_create_args), (sy_call_t *)linux_timerfd_create, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 322 = linux_timerfd_create */
|
||||
{ AS(linux_eventfd_args), (sy_call_t *)linux_eventfd, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 323 = linux_eventfd */
|
||||
{ AS(linux_fallocate_args), (sy_call_t *)linux_fallocate, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 324 = linux_fallocate */
|
||||
{ 0, (sy_call_t *)linux_timerfd_settime, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 325 = linux_timerfd_settime */
|
||||
{ 0, (sy_call_t *)linux_timerfd_gettime, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 326 = linux_timerfd_gettime */
|
||||
{ AS(linux_timerfd_settime_args), (sy_call_t *)linux_timerfd_settime, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 325 = linux_timerfd_settime */
|
||||
{ AS(linux_timerfd_gettime_args), (sy_call_t *)linux_timerfd_gettime, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 326 = linux_timerfd_gettime */
|
||||
{ 0, (sy_call_t *)linux_signalfd4, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 327 = linux_signalfd4 */
|
||||
{ AS(linux_eventfd2_args), (sy_call_t *)linux_eventfd2, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 328 = linux_eventfd2 */
|
||||
{ AS(linux_epoll_create1_args), (sy_call_t *)linux_epoll_create1, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 329 = linux_epoll_create1 */
|
||||
|
@ -2189,7 +2189,10 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
|
||||
}
|
||||
/* linux_timerfd_create */
|
||||
case 322: {
|
||||
*n_args = 0;
|
||||
struct linux_timerfd_create_args *p = params;
|
||||
iarg[0] = p->clockid; /* l_int */
|
||||
iarg[1] = p->flags; /* l_int */
|
||||
*n_args = 2;
|
||||
break;
|
||||
}
|
||||
/* linux_eventfd */
|
||||
@ -2211,12 +2214,20 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
|
||||
}
|
||||
/* linux_timerfd_settime */
|
||||
case 325: {
|
||||
*n_args = 0;
|
||||
struct linux_timerfd_settime_args *p = params;
|
||||
iarg[0] = p->fd; /* l_int */
|
||||
iarg[1] = p->flags; /* l_int */
|
||||
uarg[2] = (intptr_t) p->new_value; /* const struct l_itimerspec * */
|
||||
uarg[3] = (intptr_t) p->old_value; /* struct l_itimerspec * */
|
||||
*n_args = 4;
|
||||
break;
|
||||
}
|
||||
/* linux_timerfd_gettime */
|
||||
case 326: {
|
||||
*n_args = 0;
|
||||
struct linux_timerfd_gettime_args *p = params;
|
||||
iarg[0] = p->fd; /* l_int */
|
||||
uarg[1] = (intptr_t) p->old_value; /* struct l_itimerspec * */
|
||||
*n_args = 2;
|
||||
break;
|
||||
}
|
||||
/* linux_signalfd4 */
|
||||
@ -5998,6 +6009,16 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
|
||||
break;
|
||||
/* linux_timerfd_create */
|
||||
case 322:
|
||||
switch(ndx) {
|
||||
case 0:
|
||||
p = "l_int";
|
||||
break;
|
||||
case 1:
|
||||
p = "l_int";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
};
|
||||
break;
|
||||
/* linux_eventfd */
|
||||
case 323:
|
||||
@ -6030,9 +6051,35 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
|
||||
break;
|
||||
/* linux_timerfd_settime */
|
||||
case 325:
|
||||
switch(ndx) {
|
||||
case 0:
|
||||
p = "l_int";
|
||||
break;
|
||||
case 1:
|
||||
p = "l_int";
|
||||
break;
|
||||
case 2:
|
||||
p = "userland const struct l_itimerspec *";
|
||||
break;
|
||||
case 3:
|
||||
p = "userland struct l_itimerspec *";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
};
|
||||
break;
|
||||
/* linux_timerfd_gettime */
|
||||
case 326:
|
||||
switch(ndx) {
|
||||
case 0:
|
||||
p = "l_int";
|
||||
break;
|
||||
case 1:
|
||||
p = "userland struct l_itimerspec *";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
};
|
||||
break;
|
||||
/* linux_signalfd4 */
|
||||
case 327:
|
||||
@ -8128,6 +8175,9 @@ systrace_return_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
|
||||
case 321:
|
||||
/* linux_timerfd_create */
|
||||
case 322:
|
||||
if (ndx == 0 || ndx == 1)
|
||||
p = "int";
|
||||
break;
|
||||
/* linux_eventfd */
|
||||
case 323:
|
||||
if (ndx == 0 || ndx == 1)
|
||||
@ -8140,8 +8190,14 @@ systrace_return_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
|
||||
break;
|
||||
/* linux_timerfd_settime */
|
||||
case 325:
|
||||
if (ndx == 0 || ndx == 1)
|
||||
p = "int";
|
||||
break;
|
||||
/* linux_timerfd_gettime */
|
||||
case 326:
|
||||
if (ndx == 0 || ndx == 1)
|
||||
p = "int";
|
||||
break;
|
||||
/* linux_signalfd4 */
|
||||
case 327:
|
||||
/* linux_eventfd2 */
|
||||
|
@ -1080,7 +1080,8 @@ struct linux_signalfd_args {
|
||||
register_t dummy;
|
||||
};
|
||||
struct linux_timerfd_create_args {
|
||||
register_t dummy;
|
||||
char clockid_l_[PADL_(l_int)]; l_int clockid; char clockid_r_[PADR_(l_int)];
|
||||
char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
|
||||
};
|
||||
struct linux_eventfd_args {
|
||||
char initval_l_[PADL_(l_uint)]; l_uint initval; char initval_r_[PADR_(l_uint)];
|
||||
@ -1092,10 +1093,14 @@ struct linux_fallocate_args {
|
||||
char len_l_[PADL_(l_loff_t)]; l_loff_t len; char len_r_[PADR_(l_loff_t)];
|
||||
};
|
||||
struct linux_timerfd_settime_args {
|
||||
register_t dummy;
|
||||
char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
|
||||
char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
|
||||
char new_value_l_[PADL_(const struct l_itimerspec *)]; const struct l_itimerspec * new_value; char new_value_r_[PADR_(const struct l_itimerspec *)];
|
||||
char old_value_l_[PADL_(struct l_itimerspec *)]; struct l_itimerspec * old_value; char old_value_r_[PADR_(struct l_itimerspec *)];
|
||||
};
|
||||
struct linux_timerfd_gettime_args {
|
||||
register_t dummy;
|
||||
char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
|
||||
char old_value_l_[PADL_(struct l_itimerspec *)]; struct l_itimerspec * old_value; char old_value_r_[PADR_(struct l_itimerspec *)];
|
||||
};
|
||||
struct linux_signalfd4_args {
|
||||
register_t dummy;
|
||||
|
@ -339,11 +339,11 @@ struct sysent linux_sysent[] = {
|
||||
{ AS(linux_epoll_pwait_args), (sy_call_t *)linux_epoll_pwait, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 319 = linux_epoll_pwait */
|
||||
{ AS(linux_utimensat_args), (sy_call_t *)linux_utimensat, AUE_FUTIMESAT, NULL, 0, 0, 0, SY_THR_STATIC }, /* 320 = linux_utimensat */
|
||||
{ 0, (sy_call_t *)linux_signalfd, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 321 = linux_signalfd */
|
||||
{ 0, (sy_call_t *)linux_timerfd_create, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 322 = linux_timerfd_create */
|
||||
{ AS(linux_timerfd_create_args), (sy_call_t *)linux_timerfd_create, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 322 = linux_timerfd_create */
|
||||
{ AS(linux_eventfd_args), (sy_call_t *)linux_eventfd, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 323 = linux_eventfd */
|
||||
{ AS(linux_fallocate_args), (sy_call_t *)linux_fallocate, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 324 = linux_fallocate */
|
||||
{ 0, (sy_call_t *)linux_timerfd_settime, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 325 = linux_timerfd_settime */
|
||||
{ 0, (sy_call_t *)linux_timerfd_gettime, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 326 = linux_timerfd_gettime */
|
||||
{ AS(linux_timerfd_settime_args), (sy_call_t *)linux_timerfd_settime, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 325 = linux_timerfd_settime */
|
||||
{ AS(linux_timerfd_gettime_args), (sy_call_t *)linux_timerfd_gettime, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 326 = linux_timerfd_gettime */
|
||||
{ 0, (sy_call_t *)linux_signalfd4, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 327 = linux_signalfd4 */
|
||||
{ AS(linux_eventfd2_args), (sy_call_t *)linux_eventfd2, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 328 = linux_eventfd2 */
|
||||
{ AS(linux_epoll_create1_args), (sy_call_t *)linux_epoll_create1, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 329 = linux_epoll_create1 */
|
||||
|
@ -2265,7 +2265,10 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
|
||||
}
|
||||
/* linux_timerfd_create */
|
||||
case 322: {
|
||||
*n_args = 0;
|
||||
struct linux_timerfd_create_args *p = params;
|
||||
iarg[0] = p->clockid; /* l_int */
|
||||
iarg[1] = p->flags; /* l_int */
|
||||
*n_args = 2;
|
||||
break;
|
||||
}
|
||||
/* linux_eventfd */
|
||||
@ -2287,12 +2290,20 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
|
||||
}
|
||||
/* linux_timerfd_settime */
|
||||
case 325: {
|
||||
*n_args = 0;
|
||||
struct linux_timerfd_settime_args *p = params;
|
||||
iarg[0] = p->fd; /* l_int */
|
||||
iarg[1] = p->flags; /* l_int */
|
||||
uarg[2] = (intptr_t) p->new_value; /* const struct l_itimerspec * */
|
||||
uarg[3] = (intptr_t) p->old_value; /* struct l_itimerspec * */
|
||||
*n_args = 4;
|
||||
break;
|
||||
}
|
||||
/* linux_timerfd_gettime */
|
||||
case 326: {
|
||||
*n_args = 0;
|
||||
struct linux_timerfd_gettime_args *p = params;
|
||||
iarg[0] = p->fd; /* l_int */
|
||||
uarg[1] = (intptr_t) p->old_value; /* struct l_itimerspec * */
|
||||
*n_args = 2;
|
||||
break;
|
||||
}
|
||||
/* linux_signalfd4 */
|
||||
@ -6229,6 +6240,16 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
|
||||
break;
|
||||
/* linux_timerfd_create */
|
||||
case 322:
|
||||
switch(ndx) {
|
||||
case 0:
|
||||
p = "l_int";
|
||||
break;
|
||||
case 1:
|
||||
p = "l_int";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
};
|
||||
break;
|
||||
/* linux_eventfd */
|
||||
case 323:
|
||||
@ -6261,9 +6282,35 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
|
||||
break;
|
||||
/* linux_timerfd_settime */
|
||||
case 325:
|
||||
switch(ndx) {
|
||||
case 0:
|
||||
p = "l_int";
|
||||
break;
|
||||
case 1:
|
||||
p = "l_int";
|
||||
break;
|
||||
case 2:
|
||||
p = "userland const struct l_itimerspec *";
|
||||
break;
|
||||
case 3:
|
||||
p = "userland struct l_itimerspec *";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
};
|
||||
break;
|
||||
/* linux_timerfd_gettime */
|
||||
case 326:
|
||||
switch(ndx) {
|
||||
case 0:
|
||||
p = "l_int";
|
||||
break;
|
||||
case 1:
|
||||
p = "userland struct l_itimerspec *";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
};
|
||||
break;
|
||||
/* linux_signalfd4 */
|
||||
case 327:
|
||||
@ -8406,6 +8453,9 @@ systrace_return_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
|
||||
case 321:
|
||||
/* linux_timerfd_create */
|
||||
case 322:
|
||||
if (ndx == 0 || ndx == 1)
|
||||
p = "int";
|
||||
break;
|
||||
/* linux_eventfd */
|
||||
case 323:
|
||||
if (ndx == 0 || ndx == 1)
|
||||
@ -8418,8 +8468,14 @@ systrace_return_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
|
||||
break;
|
||||
/* linux_timerfd_settime */
|
||||
case 325:
|
||||
if (ndx == 0 || ndx == 1)
|
||||
p = "int";
|
||||
break;
|
||||
/* linux_timerfd_gettime */
|
||||
case 326:
|
||||
if (ndx == 0 || ndx == 1)
|
||||
p = "int";
|
||||
break;
|
||||
/* linux_signalfd4 */
|
||||
case 327:
|
||||
/* linux_eventfd2 */
|
||||
|
Loading…
x
Reference in New Issue
Block a user