Regen for r283394.
This commit is contained in:
parent
e5fe4ccf59
commit
e4454275a5
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 283379 2015-05-24 14:45:57Z dchagin
|
||||
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 283394 2015-05-24 15:06:39Z dchagin
|
||||
*/
|
||||
|
||||
#ifndef _LINUX_SYSPROTO_H_
|
||||
@ -884,7 +884,11 @@ struct linux_kexec_load_args {
|
||||
register_t dummy;
|
||||
};
|
||||
struct linux_waitid_args {
|
||||
register_t dummy;
|
||||
char idtype_l_[PADL_(int)]; int idtype; char idtype_r_[PADR_(int)];
|
||||
char id_l_[PADL_(l_pid_t)]; l_pid_t id; char id_r_[PADR_(l_pid_t)];
|
||||
char info_l_[PADL_(l_siginfo_t *)]; l_siginfo_t * info; char info_r_[PADR_(l_siginfo_t *)];
|
||||
char options_l_[PADL_(int)]; int options; char options_r_[PADR_(int)];
|
||||
char rusage_l_[PADL_(struct l_rusage *)]; struct l_rusage * rusage; char rusage_r_[PADR_(struct l_rusage *)];
|
||||
};
|
||||
struct linux_add_key_args {
|
||||
register_t dummy;
|
||||
@ -1634,7 +1638,7 @@ int linux_process_vm_writev(struct thread *, struct linux_process_vm_writev_args
|
||||
#define LINUX_SYS_AUE_linux_mq_notify AUE_NULL
|
||||
#define LINUX_SYS_AUE_linux_mq_getsetattr AUE_NULL
|
||||
#define LINUX_SYS_AUE_linux_kexec_load AUE_NULL
|
||||
#define LINUX_SYS_AUE_linux_waitid AUE_NULL
|
||||
#define LINUX_SYS_AUE_linux_waitid AUE_WAIT6
|
||||
#define LINUX_SYS_AUE_linux_add_key AUE_NULL
|
||||
#define LINUX_SYS_AUE_linux_request_key AUE_NULL
|
||||
#define LINUX_SYS_AUE_linux_keyctl AUE_NULL
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 283379 2015-05-24 14:45:57Z dchagin
|
||||
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 283394 2015-05-24 15:06:39Z dchagin
|
||||
*/
|
||||
|
||||
#define LINUX_SYS_linux_exit 1
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 283379 2015-05-24 14:45:57Z dchagin
|
||||
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 283394 2015-05-24 15:06:39Z dchagin
|
||||
*/
|
||||
|
||||
const char *linux_syscallnames[] = {
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 283379 2015-05-24 14:45:57Z dchagin
|
||||
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 283394 2015-05-24 15:06:39Z dchagin
|
||||
*/
|
||||
|
||||
#include "opt_compat.h"
|
||||
@ -303,7 +303,7 @@ struct sysent linux_sysent[] = {
|
||||
{ 0, (sy_call_t *)linux_mq_notify, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 281 = linux_mq_notify */
|
||||
{ 0, (sy_call_t *)linux_mq_getsetattr, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 282 = linux_mq_getsetattr */
|
||||
{ 0, (sy_call_t *)linux_kexec_load, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 283 = linux_kexec_load */
|
||||
{ 0, (sy_call_t *)linux_waitid, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 284 = linux_waitid */
|
||||
{ AS(linux_waitid_args), (sy_call_t *)linux_waitid, AUE_WAIT6, NULL, 0, 0, 0, SY_THR_STATIC }, /* 284 = linux_waitid */
|
||||
{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0, SY_THR_ABSENT }, /* 285 = */
|
||||
{ 0, (sy_call_t *)linux_add_key, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 286 = linux_add_key */
|
||||
{ 0, (sy_call_t *)linux_request_key, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 287 = linux_request_key */
|
||||
|
@ -1886,7 +1886,13 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
|
||||
}
|
||||
/* linux_waitid */
|
||||
case 284: {
|
||||
*n_args = 0;
|
||||
struct linux_waitid_args *p = params;
|
||||
iarg[0] = p->idtype; /* int */
|
||||
iarg[1] = p->id; /* l_pid_t */
|
||||
uarg[2] = (intptr_t) p->info; /* l_siginfo_t * */
|
||||
iarg[3] = p->options; /* int */
|
||||
uarg[4] = (intptr_t) p->rusage; /* struct l_rusage * */
|
||||
*n_args = 5;
|
||||
break;
|
||||
}
|
||||
/* linux_add_key */
|
||||
@ -5068,6 +5074,25 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
|
||||
break;
|
||||
/* linux_waitid */
|
||||
case 284:
|
||||
switch(ndx) {
|
||||
case 0:
|
||||
p = "int";
|
||||
break;
|
||||
case 1:
|
||||
p = "l_pid_t";
|
||||
break;
|
||||
case 2:
|
||||
p = "l_siginfo_t *";
|
||||
break;
|
||||
case 3:
|
||||
p = "int";
|
||||
break;
|
||||
case 4:
|
||||
p = "struct l_rusage *";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
};
|
||||
break;
|
||||
/* linux_add_key */
|
||||
case 286:
|
||||
@ -6569,6 +6594,9 @@ systrace_return_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
|
||||
case 283:
|
||||
/* linux_waitid */
|
||||
case 284:
|
||||
if (ndx == 0 || ndx == 1)
|
||||
p = "int";
|
||||
break;
|
||||
/* linux_add_key */
|
||||
case 286:
|
||||
/* linux_request_key */
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/i386/linux/syscalls.master 283392 2015-05-24 15:04:12Z dchagin
|
||||
* created from FreeBSD: head/sys/i386/linux/syscalls.master 283394 2015-05-24 15:06:39Z dchagin
|
||||
*/
|
||||
|
||||
#ifndef _LINUX_SYSPROTO_H_
|
||||
@ -902,7 +902,11 @@ struct linux_kexec_load_args {
|
||||
register_t dummy;
|
||||
};
|
||||
struct linux_waitid_args {
|
||||
register_t dummy;
|
||||
char idtype_l_[PADL_(int)]; int idtype; char idtype_r_[PADR_(int)];
|
||||
char id_l_[PADL_(l_pid_t)]; l_pid_t id; char id_r_[PADR_(l_pid_t)];
|
||||
char info_l_[PADL_(l_siginfo_t *)]; l_siginfo_t * info; char info_r_[PADR_(l_siginfo_t *)];
|
||||
char options_l_[PADL_(int)]; int options; char options_r_[PADR_(int)];
|
||||
char rusage_l_[PADL_(void *)]; void * rusage; char rusage_r_[PADR_(void *)];
|
||||
};
|
||||
struct linux_add_key_args {
|
||||
register_t dummy;
|
||||
@ -1656,7 +1660,7 @@ int linux_process_vm_writev(struct thread *, struct linux_process_vm_writev_args
|
||||
#define LINUX_SYS_AUE_linux_mq_notify AUE_NULL
|
||||
#define LINUX_SYS_AUE_linux_mq_getsetattr AUE_NULL
|
||||
#define LINUX_SYS_AUE_linux_kexec_load AUE_NULL
|
||||
#define LINUX_SYS_AUE_linux_waitid AUE_NULL
|
||||
#define LINUX_SYS_AUE_linux_waitid AUE_WAIT6
|
||||
#define LINUX_SYS_AUE_linux_add_key AUE_NULL
|
||||
#define LINUX_SYS_AUE_linux_request_key AUE_NULL
|
||||
#define LINUX_SYS_AUE_linux_keyctl AUE_NULL
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/i386/linux/syscalls.master 283392 2015-05-24 15:04:12Z dchagin
|
||||
* created from FreeBSD: head/sys/i386/linux/syscalls.master 283394 2015-05-24 15:06:39Z dchagin
|
||||
*/
|
||||
|
||||
#define LINUX_SYS_linux_exit 1
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/i386/linux/syscalls.master 283392 2015-05-24 15:04:12Z dchagin
|
||||
* created from FreeBSD: head/sys/i386/linux/syscalls.master 283394 2015-05-24 15:06:39Z dchagin
|
||||
*/
|
||||
|
||||
const char *linux_syscallnames[] = {
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/i386/linux/syscalls.master 283392 2015-05-24 15:04:12Z dchagin
|
||||
* created from FreeBSD: head/sys/i386/linux/syscalls.master 283394 2015-05-24 15:06:39Z dchagin
|
||||
*/
|
||||
|
||||
#include <sys/param.h>
|
||||
@ -302,7 +302,7 @@ struct sysent linux_sysent[] = {
|
||||
{ AS(linux_mq_notify_args), (sy_call_t *)linux_mq_notify, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 281 = linux_mq_notify */
|
||||
{ AS(linux_mq_getsetattr_args), (sy_call_t *)linux_mq_getsetattr, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 282 = linux_mq_getsetattr */
|
||||
{ 0, (sy_call_t *)linux_kexec_load, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 283 = linux_kexec_load */
|
||||
{ 0, (sy_call_t *)linux_waitid, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 284 = linux_waitid */
|
||||
{ AS(linux_waitid_args), (sy_call_t *)linux_waitid, AUE_WAIT6, NULL, 0, 0, 0, SY_THR_STATIC }, /* 284 = linux_waitid */
|
||||
{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0, SY_THR_ABSENT }, /* 285 = */
|
||||
{ 0, (sy_call_t *)linux_add_key, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 286 = linux_add_key */
|
||||
{ 0, (sy_call_t *)linux_request_key, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 287 = linux_request_key */
|
||||
|
@ -1962,7 +1962,13 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
|
||||
}
|
||||
/* linux_waitid */
|
||||
case 284: {
|
||||
*n_args = 0;
|
||||
struct linux_waitid_args *p = params;
|
||||
iarg[0] = p->idtype; /* int */
|
||||
iarg[1] = p->id; /* l_pid_t */
|
||||
uarg[2] = (intptr_t) p->info; /* l_siginfo_t * */
|
||||
iarg[3] = p->options; /* int */
|
||||
uarg[4] = (intptr_t) p->rusage; /* void * */
|
||||
*n_args = 5;
|
||||
break;
|
||||
}
|
||||
/* linux_add_key */
|
||||
@ -5299,6 +5305,25 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
|
||||
break;
|
||||
/* linux_waitid */
|
||||
case 284:
|
||||
switch(ndx) {
|
||||
case 0:
|
||||
p = "int";
|
||||
break;
|
||||
case 1:
|
||||
p = "l_pid_t";
|
||||
break;
|
||||
case 2:
|
||||
p = "l_siginfo_t *";
|
||||
break;
|
||||
case 3:
|
||||
p = "int";
|
||||
break;
|
||||
case 4:
|
||||
p = "void *";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
};
|
||||
break;
|
||||
/* linux_add_key */
|
||||
case 286:
|
||||
@ -6847,6 +6872,9 @@ systrace_return_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
|
||||
case 283:
|
||||
/* linux_waitid */
|
||||
case 284:
|
||||
if (ndx == 0 || ndx == 1)
|
||||
p = "int";
|
||||
break;
|
||||
/* linux_add_key */
|
||||
case 286:
|
||||
/* linux_request_key */
|
||||
|
Loading…
Reference in New Issue
Block a user