Regenerate.

This commit is contained in:
Jung-uk Kim 2008-04-16 19:27:36 +00:00
parent 26833f3f9a
commit 01c3b1b200
6 changed files with 92 additions and 8 deletions

View File

@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
* created from FreeBSD: src/sys/amd64/linux32/syscalls.master,v 1.32 2008/04/08 09:45:47 kib Exp
* created from FreeBSD: src/sys/amd64/linux32/syscalls.master,v 1.33 2008/04/16 19:25:38 jkim Exp
*/
#ifndef _LINUX_SYSPROTO_H_
@ -968,6 +968,24 @@ struct linux_ppoll_args {
struct linux_unshare_args {
register_t dummy;
};
struct linux_set_robust_list_args {
register_t dummy;
};
struct linux_get_robust_list_args {
register_t dummy;
};
struct linux_splice_args {
register_t dummy;
};
struct linux_sync_file_range_args {
register_t dummy;
};
struct linux_tee_args {
register_t dummy;
};
struct linux_vmsplice_args {
register_t dummy;
};
#define nosys linux_nosys
int linux_fork(struct thread *, struct linux_fork_args *);
int linux_open(struct thread *, struct linux_open_args *);
@ -1204,6 +1222,12 @@ int linux_faccessat(struct thread *, struct linux_faccessat_args *);
int linux_pselect6(struct thread *, struct linux_pselect6_args *);
int linux_ppoll(struct thread *, struct linux_ppoll_args *);
int linux_unshare(struct thread *, struct linux_unshare_args *);
int linux_set_robust_list(struct thread *, struct linux_set_robust_list_args *);
int linux_get_robust_list(struct thread *, struct linux_get_robust_list_args *);
int linux_splice(struct thread *, struct linux_splice_args *);
int linux_sync_file_range(struct thread *, struct linux_sync_file_range_args *);
int linux_tee(struct thread *, struct linux_tee_args *);
int linux_vmsplice(struct thread *, struct linux_vmsplice_args *);
#ifdef COMPAT_43
@ -1460,6 +1484,12 @@ int linux_unshare(struct thread *, struct linux_unshare_args *);
#define LINUX_SYS_AUE_linux_pselect6 AUE_NULL
#define LINUX_SYS_AUE_linux_ppoll AUE_NULL
#define LINUX_SYS_AUE_linux_unshare AUE_NULL
#define LINUX_SYS_AUE_linux_set_robust_list AUE_NULL
#define LINUX_SYS_AUE_linux_get_robust_list AUE_NULL
#define LINUX_SYS_AUE_linux_splice AUE_NULL
#define LINUX_SYS_AUE_linux_sync_file_range AUE_NULL
#define LINUX_SYS_AUE_linux_tee AUE_NULL
#define LINUX_SYS_AUE_linux_vmsplice AUE_NULL
#undef PAD_
#undef PADL_

View File

@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
* created from FreeBSD: src/sys/amd64/linux32/syscalls.master,v 1.32 2008/04/08 09:45:47 kib Exp
* created from FreeBSD: src/sys/amd64/linux32/syscalls.master,v 1.33 2008/04/16 19:25:38 jkim Exp
*/
#define LINUX_SYS_exit 1
@ -283,4 +283,10 @@
#define LINUX_SYS_linux_pselect6 308
#define LINUX_SYS_linux_ppoll 309
#define LINUX_SYS_linux_unshare 310
#define LINUX_SYS_MAXSYSCALL 311
#define LINUX_SYS_linux_set_robust_list 311
#define LINUX_SYS_linux_get_robust_list 312
#define LINUX_SYS_linux_splice 313
#define LINUX_SYS_linux_sync_file_range 314
#define LINUX_SYS_linux_tee 315
#define LINUX_SYS_linux_vmsplice 316
#define LINUX_SYS_MAXSYSCALL 317

View File

@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
* created from FreeBSD: src/sys/amd64/linux32/syscalls.master,v 1.32 2008/04/08 09:45:47 kib Exp
* created from FreeBSD: src/sys/amd64/linux32/syscalls.master,v 1.33 2008/04/16 19:25:38 jkim Exp
*/
#include "opt_compat.h"
@ -330,4 +330,10 @@ struct sysent linux_sysent[] = {
{ 0, (sy_call_t *)linux_pselect6, AUE_NULL, NULL, 0, 0 }, /* 308 = linux_pselect6 */
{ 0, (sy_call_t *)linux_ppoll, AUE_NULL, NULL, 0, 0 }, /* 309 = linux_ppoll */
{ 0, (sy_call_t *)linux_unshare, AUE_NULL, NULL, 0, 0 }, /* 310 = linux_unshare */
{ 0, (sy_call_t *)linux_set_robust_list, AUE_NULL, NULL, 0, 0 }, /* 311 = linux_set_robust_list */
{ 0, (sy_call_t *)linux_get_robust_list, AUE_NULL, NULL, 0, 0 }, /* 312 = linux_get_robust_list */
{ 0, (sy_call_t *)linux_splice, AUE_NULL, NULL, 0, 0 }, /* 313 = linux_splice */
{ 0, (sy_call_t *)linux_sync_file_range, AUE_NULL, NULL, 0, 0 }, /* 314 = linux_sync_file_range */
{ 0, (sy_call_t *)linux_tee, AUE_NULL, NULL, 0, 0 }, /* 315 = linux_tee */
{ 0, (sy_call_t *)linux_vmsplice, AUE_NULL, NULL, 0, 0 }, /* 316 = linux_vmsplice */
};

View File

@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
* created from FreeBSD: src/sys/i386/linux/syscalls.master,v 1.91 2008/04/08 09:45:48 kib Exp
* created from FreeBSD: src/sys/i386/linux/syscalls.master,v 1.92 2008/04/16 19:25:39 jkim Exp
*/
#ifndef _LINUX_SYSPROTO_H_
@ -987,6 +987,24 @@ struct linux_ppoll_args {
struct linux_unshare_args {
register_t dummy;
};
struct linux_set_robust_list_args {
register_t dummy;
};
struct linux_get_robust_list_args {
register_t dummy;
};
struct linux_splice_args {
register_t dummy;
};
struct linux_sync_file_range_args {
register_t dummy;
};
struct linux_tee_args {
register_t dummy;
};
struct linux_vmsplice_args {
register_t dummy;
};
#define nosys linux_nosys
int linux_fork(struct thread *, struct linux_fork_args *);
int linux_open(struct thread *, struct linux_open_args *);
@ -1224,6 +1242,12 @@ int linux_faccessat(struct thread *, struct linux_faccessat_args *);
int linux_pselect6(struct thread *, struct linux_pselect6_args *);
int linux_ppoll(struct thread *, struct linux_ppoll_args *);
int linux_unshare(struct thread *, struct linux_unshare_args *);
int linux_set_robust_list(struct thread *, struct linux_set_robust_list_args *);
int linux_get_robust_list(struct thread *, struct linux_get_robust_list_args *);
int linux_splice(struct thread *, struct linux_splice_args *);
int linux_sync_file_range(struct thread *, struct linux_sync_file_range_args *);
int linux_tee(struct thread *, struct linux_tee_args *);
int linux_vmsplice(struct thread *, struct linux_vmsplice_args *);
#ifdef COMPAT_43
@ -1481,6 +1505,12 @@ int linux_unshare(struct thread *, struct linux_unshare_args *);
#define LINUX_SYS_AUE_linux_pselect6 AUE_NULL
#define LINUX_SYS_AUE_linux_ppoll AUE_NULL
#define LINUX_SYS_AUE_linux_unshare AUE_NULL
#define LINUX_SYS_AUE_linux_set_robust_list AUE_NULL
#define LINUX_SYS_AUE_linux_get_robust_list AUE_NULL
#define LINUX_SYS_AUE_linux_splice AUE_NULL
#define LINUX_SYS_AUE_linux_sync_file_range AUE_NULL
#define LINUX_SYS_AUE_linux_tee AUE_NULL
#define LINUX_SYS_AUE_linux_vmsplice AUE_NULL
#undef PAD_
#undef PADL_

View File

@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
* created from FreeBSD: src/sys/i386/linux/syscalls.master,v 1.91 2008/04/08 09:45:48 kib Exp
* created from FreeBSD: src/sys/i386/linux/syscalls.master,v 1.92 2008/04/16 19:25:39 jkim Exp
*/
#define LINUX_SYS_exit 1
@ -290,4 +290,10 @@
#define LINUX_SYS_linux_pselect6 308
#define LINUX_SYS_linux_ppoll 309
#define LINUX_SYS_linux_unshare 310
#define LINUX_SYS_MAXSYSCALL 311
#define LINUX_SYS_linux_set_robust_list 311
#define LINUX_SYS_linux_get_robust_list 312
#define LINUX_SYS_linux_splice 313
#define LINUX_SYS_linux_sync_file_range 314
#define LINUX_SYS_linux_tee 315
#define LINUX_SYS_linux_vmsplice 316
#define LINUX_SYS_MAXSYSCALL 317

View File

@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
* created from FreeBSD: src/sys/i386/linux/syscalls.master,v 1.91 2008/04/08 09:45:48 kib Exp
* created from FreeBSD: src/sys/i386/linux/syscalls.master,v 1.92 2008/04/16 19:25:39 jkim Exp
*/
#include <sys/param.h>
@ -329,4 +329,10 @@ struct sysent linux_sysent[] = {
{ 0, (sy_call_t *)linux_pselect6, AUE_NULL, NULL, 0, 0 }, /* 308 = linux_pselect6 */
{ 0, (sy_call_t *)linux_ppoll, AUE_NULL, NULL, 0, 0 }, /* 309 = linux_ppoll */
{ 0, (sy_call_t *)linux_unshare, AUE_NULL, NULL, 0, 0 }, /* 310 = linux_unshare */
{ 0, (sy_call_t *)linux_set_robust_list, AUE_NULL, NULL, 0, 0 }, /* 311 = linux_set_robust_list */
{ 0, (sy_call_t *)linux_get_robust_list, AUE_NULL, NULL, 0, 0 }, /* 312 = linux_get_robust_list */
{ 0, (sy_call_t *)linux_splice, AUE_NULL, NULL, 0, 0 }, /* 313 = linux_splice */
{ 0, (sy_call_t *)linux_sync_file_range, AUE_NULL, NULL, 0, 0 }, /* 314 = linux_sync_file_range */
{ 0, (sy_call_t *)linux_tee, AUE_NULL, NULL, 0, 0 }, /* 315 = linux_tee */
{ 0, (sy_call_t *)linux_vmsplice, AUE_NULL, NULL, 0, 0 }, /* 316 = linux_vmsplice */
};