Regen after r300359 (struct l_sched_param removal).
MFC after: 1 week
This commit is contained in:
parent
8cc96fb43a
commit
f26a190f65
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/amd64/linux/syscalls.master 293907 2016-01-14 10:13:58Z glebius
|
||||
* created from FreeBSD: head/sys/amd64/linux/syscalls.master 300359 2016-05-21 08:01:14Z dchagin
|
||||
*/
|
||||
|
||||
#ifndef _LINUX_SYSPROTO_H_
|
||||
@ -524,16 +524,16 @@ struct linux_getpriority_args {
|
||||
};
|
||||
struct linux_sched_setparam_args {
|
||||
char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
|
||||
char param_l_[PADL_(struct l_sched_param *)]; struct l_sched_param * param; char param_r_[PADR_(struct l_sched_param *)];
|
||||
char param_l_[PADL_(struct sched_param *)]; struct sched_param * param; char param_r_[PADR_(struct sched_param *)];
|
||||
};
|
||||
struct linux_sched_getparam_args {
|
||||
char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
|
||||
char param_l_[PADL_(struct l_sched_param *)]; struct l_sched_param * param; char param_r_[PADR_(struct l_sched_param *)];
|
||||
char param_l_[PADL_(struct sched_param *)]; struct sched_param * param; char param_r_[PADR_(struct sched_param *)];
|
||||
};
|
||||
struct linux_sched_setscheduler_args {
|
||||
char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
|
||||
char policy_l_[PADL_(l_int)]; l_int policy; char policy_r_[PADR_(l_int)];
|
||||
char param_l_[PADL_(struct l_sched_param *)]; struct l_sched_param * param; char param_r_[PADR_(struct l_sched_param *)];
|
||||
char param_l_[PADL_(struct sched_param *)]; struct sched_param * param; char param_r_[PADR_(struct sched_param *)];
|
||||
};
|
||||
struct linux_sched_getscheduler_args {
|
||||
char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/amd64/linux/syscalls.master 293907 2016-01-14 10:13:58Z glebius
|
||||
* created from FreeBSD: head/sys/amd64/linux/syscalls.master 300359 2016-05-21 08:01:14Z dchagin
|
||||
*/
|
||||
|
||||
#define LINUX_SYS_read 0
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/amd64/linux/syscalls.master 293907 2016-01-14 10:13:58Z glebius
|
||||
* created from FreeBSD: head/sys/amd64/linux/syscalls.master 300359 2016-05-21 08:01:14Z dchagin
|
||||
*/
|
||||
|
||||
const char *linux_syscallnames[] = {
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/amd64/linux/syscalls.master 293907 2016-01-14 10:13:58Z glebius
|
||||
* created from FreeBSD: head/sys/amd64/linux/syscalls.master 300359 2016-05-21 08:01:14Z dchagin
|
||||
*/
|
||||
|
||||
#include <sys/param.h>
|
||||
|
@ -1178,7 +1178,7 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
|
||||
case 142: {
|
||||
struct linux_sched_setparam_args *p = params;
|
||||
iarg[0] = p->pid; /* l_pid_t */
|
||||
uarg[1] = (intptr_t) p->param; /* struct l_sched_param * */
|
||||
uarg[1] = (intptr_t) p->param; /* struct sched_param * */
|
||||
*n_args = 2;
|
||||
break;
|
||||
}
|
||||
@ -1186,7 +1186,7 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
|
||||
case 143: {
|
||||
struct linux_sched_getparam_args *p = params;
|
||||
iarg[0] = p->pid; /* l_pid_t */
|
||||
uarg[1] = (intptr_t) p->param; /* struct l_sched_param * */
|
||||
uarg[1] = (intptr_t) p->param; /* struct sched_param * */
|
||||
*n_args = 2;
|
||||
break;
|
||||
}
|
||||
@ -1195,7 +1195,7 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
|
||||
struct linux_sched_setscheduler_args *p = params;
|
||||
iarg[0] = p->pid; /* l_pid_t */
|
||||
iarg[1] = p->policy; /* l_int */
|
||||
uarg[2] = (intptr_t) p->param; /* struct l_sched_param * */
|
||||
uarg[2] = (intptr_t) p->param; /* struct sched_param * */
|
||||
*n_args = 3;
|
||||
break;
|
||||
}
|
||||
@ -4209,7 +4209,7 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
|
||||
p = "l_pid_t";
|
||||
break;
|
||||
case 1:
|
||||
p = "struct l_sched_param *";
|
||||
p = "struct sched_param *";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
@ -4222,7 +4222,7 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
|
||||
p = "l_pid_t";
|
||||
break;
|
||||
case 1:
|
||||
p = "struct l_sched_param *";
|
||||
p = "struct sched_param *";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
@ -4238,7 +4238,7 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
|
||||
p = "l_int";
|
||||
break;
|
||||
case 2:
|
||||
p = "struct l_sched_param *";
|
||||
p = "struct sched_param *";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 297061 2016-03-20 13:21:20Z dchagin
|
||||
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 300359 2016-05-21 08:01:14Z dchagin
|
||||
*/
|
||||
|
||||
#ifndef _LINUX32_SYSPROTO_H_
|
||||
@ -480,16 +480,16 @@ struct linux_sysctl_args {
|
||||
};
|
||||
struct linux_sched_setparam_args {
|
||||
char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
|
||||
char param_l_[PADL_(struct l_sched_param *)]; struct l_sched_param * param; char param_r_[PADR_(struct l_sched_param *)];
|
||||
char param_l_[PADL_(struct sched_param *)]; struct sched_param * param; char param_r_[PADR_(struct sched_param *)];
|
||||
};
|
||||
struct linux_sched_getparam_args {
|
||||
char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
|
||||
char param_l_[PADL_(struct l_sched_param *)]; struct l_sched_param * param; char param_r_[PADR_(struct l_sched_param *)];
|
||||
char param_l_[PADL_(struct sched_param *)]; struct sched_param * param; char param_r_[PADR_(struct sched_param *)];
|
||||
};
|
||||
struct linux_sched_setscheduler_args {
|
||||
char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
|
||||
char policy_l_[PADL_(l_int)]; l_int policy; char policy_r_[PADR_(l_int)];
|
||||
char param_l_[PADL_(struct l_sched_param *)]; struct l_sched_param * param; char param_r_[PADR_(struct l_sched_param *)];
|
||||
char param_l_[PADL_(struct sched_param *)]; struct sched_param * param; char param_r_[PADR_(struct sched_param *)];
|
||||
};
|
||||
struct linux_sched_getscheduler_args {
|
||||
char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 297061 2016-03-20 13:21:20Z dchagin
|
||||
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 300359 2016-05-21 08:01:14Z dchagin
|
||||
*/
|
||||
|
||||
#define LINUX32_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 297061 2016-03-20 13:21:20Z dchagin
|
||||
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 300359 2016-05-21 08:01:14Z dchagin
|
||||
*/
|
||||
|
||||
const char *linux32_syscallnames[] = {
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 297061 2016-03-20 13:21:20Z dchagin
|
||||
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 300359 2016-05-21 08:01:14Z dchagin
|
||||
*/
|
||||
|
||||
#include "opt_compat.h"
|
||||
|
@ -1047,7 +1047,7 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
|
||||
case 154: {
|
||||
struct linux_sched_setparam_args *p = params;
|
||||
iarg[0] = p->pid; /* l_pid_t */
|
||||
uarg[1] = (intptr_t) p->param; /* struct l_sched_param * */
|
||||
uarg[1] = (intptr_t) p->param; /* struct sched_param * */
|
||||
*n_args = 2;
|
||||
break;
|
||||
}
|
||||
@ -1055,7 +1055,7 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
|
||||
case 155: {
|
||||
struct linux_sched_getparam_args *p = params;
|
||||
iarg[0] = p->pid; /* l_pid_t */
|
||||
uarg[1] = (intptr_t) p->param; /* struct l_sched_param * */
|
||||
uarg[1] = (intptr_t) p->param; /* struct sched_param * */
|
||||
*n_args = 2;
|
||||
break;
|
||||
}
|
||||
@ -1064,7 +1064,7 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
|
||||
struct linux_sched_setscheduler_args *p = params;
|
||||
iarg[0] = p->pid; /* l_pid_t */
|
||||
iarg[1] = p->policy; /* l_int */
|
||||
uarg[2] = (intptr_t) p->param; /* struct l_sched_param * */
|
||||
uarg[2] = (intptr_t) p->param; /* struct sched_param * */
|
||||
*n_args = 3;
|
||||
break;
|
||||
}
|
||||
@ -3938,7 +3938,7 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
|
||||
p = "l_pid_t";
|
||||
break;
|
||||
case 1:
|
||||
p = "struct l_sched_param *";
|
||||
p = "struct sched_param *";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
@ -3951,7 +3951,7 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
|
||||
p = "l_pid_t";
|
||||
break;
|
||||
case 1:
|
||||
p = "struct l_sched_param *";
|
||||
p = "struct sched_param *";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
@ -3967,7 +3967,7 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
|
||||
p = "l_int";
|
||||
break;
|
||||
case 2:
|
||||
p = "struct l_sched_param *";
|
||||
p = "struct sched_param *";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/i386/linux/syscalls.master 297061 2016-03-20 13:21:20Z dchagin
|
||||
* created from FreeBSD: head/sys/i386/linux/syscalls.master 300359 2016-05-21 08:01:14Z dchagin
|
||||
*/
|
||||
|
||||
#ifndef _LINUX_SYSPROTO_H_
|
||||
@ -478,16 +478,16 @@ struct linux_sysctl_args {
|
||||
};
|
||||
struct linux_sched_setparam_args {
|
||||
char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
|
||||
char param_l_[PADL_(struct l_sched_param *)]; struct l_sched_param * param; char param_r_[PADR_(struct l_sched_param *)];
|
||||
char param_l_[PADL_(struct sched_param *)]; struct sched_param * param; char param_r_[PADR_(struct sched_param *)];
|
||||
};
|
||||
struct linux_sched_getparam_args {
|
||||
char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
|
||||
char param_l_[PADL_(struct l_sched_param *)]; struct l_sched_param * param; char param_r_[PADR_(struct l_sched_param *)];
|
||||
char param_l_[PADL_(struct sched_param *)]; struct sched_param * param; char param_r_[PADR_(struct sched_param *)];
|
||||
};
|
||||
struct linux_sched_setscheduler_args {
|
||||
char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
|
||||
char policy_l_[PADL_(l_int)]; l_int policy; char policy_r_[PADR_(l_int)];
|
||||
char param_l_[PADL_(struct l_sched_param *)]; struct l_sched_param * param; char param_r_[PADR_(struct l_sched_param *)];
|
||||
char param_l_[PADL_(struct sched_param *)]; struct sched_param * param; char param_r_[PADR_(struct sched_param *)];
|
||||
};
|
||||
struct linux_sched_getscheduler_args {
|
||||
char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/i386/linux/syscalls.master 297061 2016-03-20 13:21:20Z dchagin
|
||||
* created from FreeBSD: head/sys/i386/linux/syscalls.master 300359 2016-05-21 08:01:14Z 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 297061 2016-03-20 13:21:20Z dchagin
|
||||
* created from FreeBSD: head/sys/i386/linux/syscalls.master 300359 2016-05-21 08:01:14Z 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 297061 2016-03-20 13:21:20Z dchagin
|
||||
* created from FreeBSD: head/sys/i386/linux/syscalls.master 300359 2016-05-21 08:01:14Z dchagin
|
||||
*/
|
||||
|
||||
#include <sys/param.h>
|
||||
|
@ -1085,7 +1085,7 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
|
||||
case 154: {
|
||||
struct linux_sched_setparam_args *p = params;
|
||||
iarg[0] = p->pid; /* l_pid_t */
|
||||
uarg[1] = (intptr_t) p->param; /* struct l_sched_param * */
|
||||
uarg[1] = (intptr_t) p->param; /* struct sched_param * */
|
||||
*n_args = 2;
|
||||
break;
|
||||
}
|
||||
@ -1093,7 +1093,7 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
|
||||
case 155: {
|
||||
struct linux_sched_getparam_args *p = params;
|
||||
iarg[0] = p->pid; /* l_pid_t */
|
||||
uarg[1] = (intptr_t) p->param; /* struct l_sched_param * */
|
||||
uarg[1] = (intptr_t) p->param; /* struct sched_param * */
|
||||
*n_args = 2;
|
||||
break;
|
||||
}
|
||||
@ -1102,7 +1102,7 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
|
||||
struct linux_sched_setscheduler_args *p = params;
|
||||
iarg[0] = p->pid; /* l_pid_t */
|
||||
iarg[1] = p->policy; /* l_int */
|
||||
uarg[2] = (intptr_t) p->param; /* struct l_sched_param * */
|
||||
uarg[2] = (intptr_t) p->param; /* struct sched_param * */
|
||||
*n_args = 3;
|
||||
break;
|
||||
}
|
||||
@ -4072,7 +4072,7 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
|
||||
p = "l_pid_t";
|
||||
break;
|
||||
case 1:
|
||||
p = "struct l_sched_param *";
|
||||
p = "struct sched_param *";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
@ -4085,7 +4085,7 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
|
||||
p = "l_pid_t";
|
||||
break;
|
||||
case 1:
|
||||
p = "struct l_sched_param *";
|
||||
p = "struct sched_param *";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
@ -4101,7 +4101,7 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
|
||||
p = "l_int";
|
||||
break;
|
||||
case 2:
|
||||
p = "struct l_sched_param *";
|
||||
p = "struct sched_param *";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user