summaryrefslogtreecommitdiffstats
path: root/sys/i386/linux/linux_proto.h
diff options
context:
space:
mode:
authornetchild <netchild@FreeBSD.org>2006-10-15 14:24:10 +0000
committernetchild <netchild@FreeBSD.org>2006-10-15 14:24:10 +0000
commitf2cc0e8140fd16a2d8d2fe819a4c7f7e58b1d64c (patch)
treecf97e04a03dc6b42b2143744afa1fd745887ffcc /sys/i386/linux/linux_proto.h
parent183bd5a34bb7e6bdd1231cfafcc185bc5eb27d7f (diff)
downloadFreeBSD-src-f2cc0e8140fd16a2d8d2fe819a4c7f7e58b1d64c.zip
FreeBSD-src-f2cc0e8140fd16a2d8d2fe819a4c7f7e58b1d64c.tar.gz
regen (linux AIO stuff)
Diffstat (limited to 'sys/i386/linux/linux_proto.h')
-rw-r--r--sys/i386/linux/linux_proto.h36
1 files changed, 35 insertions, 1 deletions
diff --git a/sys/i386/linux/linux_proto.h b/sys/i386/linux/linux_proto.h
index 832f8a3..f763db1 100644
--- a/sys/i386/linux/linux_proto.h
+++ b/sys/i386/linux/linux_proto.h
@@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
- * created from FreeBSD: src/sys/i386/linux/syscalls.master,v 1.80 2006/09/21 16:18:33 rwatson Exp
+ * created from FreeBSD: src/sys/i386/linux/syscalls.master,v 1.81 2006/10/15 14:22:13 netchild Exp
*/
#ifndef _LINUX_SYSPROTO_H_
@@ -721,6 +721,30 @@ struct linux_set_thread_area_args {
struct linux_get_thread_area_args {
char desc_l_[PADL_(struct l_user_desc *)]; struct l_user_desc * desc; char desc_r_[PADR_(struct l_user_desc *)];
};
+struct linux_io_setup_args {
+ char nr_reqs_l_[PADL_(l_uint)]; l_uint nr_reqs; char nr_reqs_r_[PADR_(l_uint)];
+ char ctxp_l_[PADL_(linux_aio_context_t *)]; linux_aio_context_t * ctxp; char ctxp_r_[PADR_(linux_aio_context_t *)];
+};
+struct linux_io_destroy_args {
+ char ctx_l_[PADL_(linux_aio_context_t)]; linux_aio_context_t ctx; char ctx_r_[PADR_(linux_aio_context_t)];
+};
+struct linux_io_getevents_args {
+ char ctx_id_l_[PADL_(linux_aio_context_t)]; linux_aio_context_t ctx_id; char ctx_id_r_[PADR_(linux_aio_context_t)];
+ char min_nr_l_[PADL_(l_long)]; l_long min_nr; char min_nr_r_[PADR_(l_long)];
+ char nr_l_[PADL_(l_long)]; l_long nr; char nr_r_[PADR_(l_long)];
+ char events_l_[PADL_(struct linux_io_event *)]; struct linux_io_event * events; char events_r_[PADR_(struct linux_io_event *)];
+ char timeout_l_[PADL_(struct l_timespec *)]; struct l_timespec * timeout; char timeout_r_[PADR_(struct l_timespec *)];
+};
+struct linux_io_submit_args {
+ char ctx_id_l_[PADL_(linux_aio_context_t)]; linux_aio_context_t ctx_id; char ctx_id_r_[PADR_(linux_aio_context_t)];
+ char nr_l_[PADL_(l_long)]; l_long nr; char nr_r_[PADR_(l_long)];
+ char iocbpp_l_[PADL_(struct linux_iocb **)]; struct linux_iocb ** iocbpp; char iocbpp_r_[PADR_(struct linux_iocb **)];
+};
+struct linux_io_cancel_args {
+ char ctx_id_l_[PADL_(linux_aio_context_t)]; linux_aio_context_t ctx_id; char ctx_id_r_[PADR_(linux_aio_context_t)];
+ char iocb_l_[PADL_(struct linux_iocb *)]; struct linux_iocb * iocb; char iocb_r_[PADR_(struct linux_iocb *)];
+ char result_l_[PADL_(struct linux_io_event *)]; struct linux_io_event * result; char result_r_[PADR_(struct linux_io_event *)];
+};
struct linux_fadvise64_args {
register_t dummy;
};
@@ -1098,6 +1122,11 @@ int linux_tkill(struct thread *, struct linux_tkill_args *);
int linux_sys_futex(struct thread *, struct linux_sys_futex_args *);
int linux_set_thread_area(struct thread *, struct linux_set_thread_area_args *);
int linux_get_thread_area(struct thread *, struct linux_get_thread_area_args *);
+int linux_io_setup(struct thread *, struct linux_io_setup_args *);
+int linux_io_destroy(struct thread *, struct linux_io_destroy_args *);
+int linux_io_getevents(struct thread *, struct linux_io_getevents_args *);
+int linux_io_submit(struct thread *, struct linux_io_submit_args *);
+int linux_io_cancel(struct thread *, struct linux_io_cancel_args *);
int linux_fadvise64(struct thread *, struct linux_fadvise64_args *);
int linux_exit_group(struct thread *, struct linux_exit_group_args *);
int linux_lookup_dcookie(struct thread *, struct linux_lookup_dcookie_args *);
@@ -1344,6 +1373,11 @@ int linux_unshare(struct thread *, struct linux_unshare_args *);
#define LINUX_SYS_AUE_linux_sys_futex AUE_NULL
#define LINUX_SYS_AUE_linux_set_thread_area AUE_NULL
#define LINUX_SYS_AUE_linux_get_thread_area AUE_NULL
+#define LINUX_SYS_AUE_linux_io_setup AUE_NULL
+#define LINUX_SYS_AUE_linux_io_destroy AUE_NULL
+#define LINUX_SYS_AUE_linux_io_getevents AUE_NULL
+#define LINUX_SYS_AUE_linux_io_submit AUE_NULL
+#define LINUX_SYS_AUE_linux_io_cancel AUE_NULL
#define LINUX_SYS_AUE_linux_fadvise64 AUE_NULL
#define LINUX_SYS_AUE_linux_exit_group AUE_EXIT
#define LINUX_SYS_AUE_linux_lookup_dcookie AUE_NULL
OpenPOWER on IntegriCloud