summaryrefslogtreecommitdiffstats
path: root/sys/amd64/linux32
diff options
context:
space:
mode:
authorjkim <jkim@FreeBSD.org>2008-04-16 19:27:36 +0000
committerjkim <jkim@FreeBSD.org>2008-04-16 19:27:36 +0000
commite0c673b7e2ac1ffa29dad589abbb9cfd44ffdbf4 (patch)
tree30b4df6f223703bb7365d366d2ee50b2d8342edd /sys/amd64/linux32
parent513781a1c1ab25895b21fbd0d258c342d81da237 (diff)
downloadFreeBSD-src-e0c673b7e2ac1ffa29dad589abbb9cfd44ffdbf4.zip
FreeBSD-src-e0c673b7e2ac1ffa29dad589abbb9cfd44ffdbf4.tar.gz
Regenerate.
Diffstat (limited to 'sys/amd64/linux32')
-rw-r--r--sys/amd64/linux32/linux32_proto.h32
-rw-r--r--sys/amd64/linux32/linux32_syscall.h10
-rw-r--r--sys/amd64/linux32/linux32_sysent.c8
3 files changed, 46 insertions, 4 deletions
diff --git a/sys/amd64/linux32/linux32_proto.h b/sys/amd64/linux32/linux32_proto.h
index ce85413..6d6bfdc 100644
--- a/sys/amd64/linux32/linux32_proto.h
+++ b/sys/amd64/linux32/linux32_proto.h
@@ -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_
diff --git a/sys/amd64/linux32/linux32_syscall.h b/sys/amd64/linux32/linux32_syscall.h
index 447a590..a9f86d0 100644
--- a/sys/amd64/linux32/linux32_syscall.h
+++ b/sys/amd64/linux32/linux32_syscall.h
@@ -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
diff --git a/sys/amd64/linux32/linux32_sysent.c b/sys/amd64/linux32/linux32_sysent.c
index ceea7eb..c8add88 100644
--- a/sys/amd64/linux32/linux32_sysent.c
+++ b/sys/amd64/linux32/linux32_sysent.c
@@ -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 */
};
OpenPOWER on IntegriCloud