Regen after adding linux_sched_get_priority_max() and

linux_sched_get_priority_min()
This commit is contained in:
Andrew Gallatin 2001-04-03 18:01:41 +00:00
parent a7f70675e9
commit 9a44dfa794
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=75136
3 changed files with 15 additions and 7 deletions

View File

@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
* created from FreeBSD: src/sys/alpha/linux/syscalls.master,v 1.44 2001/02/20 02:16:07 jlemon Exp
* created from FreeBSD: src/sys/alpha/linux/syscalls.master,v 1.45 2001/02/20 03:47:59 gallatin Exp
*/
#ifndef _LINUX_SYSPROTO_H_
@ -419,6 +419,12 @@ struct linux_sched_setscheduler_args {
struct linux_sched_getscheduler_args {
pid_t pid; char pid_[PAD_(pid_t)];
};
struct linux_sched_get_priority_max_args {
int policy; char policy_[PAD_(int)];
};
struct linux_sched_get_priority_min_args {
int policy; char policy_[PAD_(int)];
};
struct linux_newuname_args {
struct linux_newuname_t * buf; char buf_[PAD_(struct linux_newuname_t *)];
};
@ -618,6 +624,8 @@ int linux_statfs __P((struct proc *, struct linux_statfs_args *));
int linux_fstatfs __P((struct proc *, struct linux_fstatfs_args *));
int linux_sched_setscheduler __P((struct proc *, struct linux_sched_setscheduler_args *));
int linux_sched_getscheduler __P((struct proc *, struct linux_sched_getscheduler_args *));
int linux_sched_get_priority_max __P((struct proc *, struct linux_sched_get_priority_max_args *));
int linux_sched_get_priority_min __P((struct proc *, struct linux_sched_get_priority_min_args *));
int linux_newuname __P((struct proc *, struct linux_newuname_args *));
int linux_mremap __P((struct proc *, struct linux_mremap_args *));
int linux_nfsservctl __P((struct proc *, struct linux_nfsservctl_args *));

View File

@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
* created from FreeBSD: src/sys/alpha/linux/syscalls.master,v 1.44 2001/02/20 02:16:07 jlemon Exp
* created from FreeBSD: src/sys/alpha/linux/syscalls.master,v 1.45 2001/02/20 03:47:59 gallatin Exp
*/
#define LINUX_SYS_exit 1
@ -153,8 +153,8 @@
#define LINUX_SYS_linux_sched_setscheduler 332
#define LINUX_SYS_linux_sched_getscheduler 333
#define LINUX_SYS_sched_yield 334
#define LINUX_SYS_sched_get_priority_max 335
#define LINUX_SYS_sched_get_priority_min 336
#define LINUX_SYS_linux_sched_get_priority_max 335
#define LINUX_SYS_linux_sched_get_priority_min 336
#define LINUX_SYS_sched_rr_get_interval 337
#define LINUX_SYS_linux_newuname 339
#define LINUX_SYS_nanosleep 340

View File

@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
* created from FreeBSD: src/sys/alpha/linux/syscalls.master,v 1.44 2001/02/20 02:16:07 jlemon Exp
* created from FreeBSD: src/sys/alpha/linux/syscalls.master,v 1.45 2001/02/20 03:47:59 gallatin Exp
*/
#include "opt_compat.h"
@ -352,8 +352,8 @@ struct sysent linux_sysent[] = {
{ AS(linux_sched_setscheduler_args), (sy_call_t *)linux_sched_setscheduler }, /* 332 = linux_sched_setscheduler */
{ AS(linux_sched_getscheduler_args), (sy_call_t *)linux_sched_getscheduler }, /* 333 = linux_sched_getscheduler */
{ 0, (sy_call_t *)sched_yield }, /* 334 = sched_yield */
{ AS(sched_get_priority_max_args), (sy_call_t *)sched_get_priority_max }, /* 335 = sched_get_priority_max */
{ AS(sched_get_priority_min_args), (sy_call_t *)sched_get_priority_min }, /* 336 = sched_get_priority_min */
{ AS(linux_sched_get_priority_max_args), (sy_call_t *)linux_sched_get_priority_max }, /* 335 = linux_sched_get_priority_max */
{ AS(linux_sched_get_priority_min_args), (sy_call_t *)linux_sched_get_priority_min }, /* 336 = linux_sched_get_priority_min */
{ AS(sched_rr_get_interval_args), (sy_call_t *)sched_rr_get_interval }, /* 337 = sched_rr_get_interval */
{ 0, (sy_call_t *)nosys }, /* 338 = afs_syscall */
{ AS(linux_newuname_args), (sy_call_t *)linux_newuname }, /* 339 = linux_newuname */