PERFORCE change 106395 for review

Roman Divacky rdivacky at FreeBSD.org
Wed Sep 20 05:34:33 PDT 2006


http://perforce.freebsd.org/chv.cgi?CH=106395

Change 106395 by rdivacky at rdivacky_witten on 2006/09/20 12:34:27

	Somehow I managed to screw make sysent ;( this should fix it.

Affected files ...

.. //depot/projects/linuxolator/src/sys/amd64/linux32/linux32_proto.h#4 edit
.. //depot/projects/linuxolator/src/sys/amd64/linux32/linux32_syscall.h#4 edit

Differences ...

==== //depot/projects/linuxolator/src/sys/amd64/linux32/linux32_proto.h#4 (text+ko) ====

@@ -724,6 +724,9 @@
 	char uaddr2_l_[PADL_(void *)]; void * uaddr2; char uaddr2_r_[PADR_(void *)];
 	char val3_l_[PADL_(int)]; int val3; char val3_r_[PADR_(int)];
 };
+struct linux_set_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 *)];
@@ -748,9 +751,6 @@
 	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_set_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_fadvise64_args {
 	register_t dummy;
 };
@@ -1108,6 +1108,7 @@
 int	linux_fremovexattr(struct thread *, struct linux_fremovexattr_args *);
 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_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 *);
@@ -1358,6 +1359,7 @@
 #define	LINUX_SYS_AUE_linux_fremovexattr	AUE_NULL
 #define	LINUX_SYS_AUE_linux_tkill	AUE_NULL
 #define	LINUX_SYS_AUE_linux_sys_futex	AUE_NULL
+#define	LINUX_SYS_AUE_linux_set_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

==== //depot/projects/linuxolator/src/sys/amd64/linux32/linux32_syscall.h#4 (text+ko) ====

@@ -221,6 +221,7 @@
 #define	LINUX_SYS_linux_fremovexattr	237
 #define	LINUX_SYS_linux_tkill	238
 #define	LINUX_SYS_linux_sys_futex	240
+#define	LINUX_SYS_linux_set_thread_area	243
 #define	LINUX_SYS_linux_io_setup	245
 #define	LINUX_SYS_linux_io_destroy	246
 #define	LINUX_SYS_linux_io_getevents	247


More information about the p4-projects mailing list