PERFORCE change 102639 for review

Roman Divacky rdivacky at FreeBSD.org
Fri Jul 28 10:30:28 UTC 2006


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

Change 102639 by rdivacky at rdivacky_witten on 2006/07/28 10:29:29

	Regen after syscalls.master update.

Affected files ...

.. //depot/projects/soc2006/rdivacky_linuxolator/i386/linux/linux_proto.h#17 edit
.. //depot/projects/soc2006/rdivacky_linuxolator/i386/linux/linux_syscall.h#17 edit
.. //depot/projects/soc2006/rdivacky_linuxolator/i386/linux/linux_sysent.c#17 edit

Differences ...

==== //depot/projects/soc2006/rdivacky_linuxolator/i386/linux/linux_proto.h#17 (text+ko) ====

@@ -201,6 +201,9 @@
 	char dev_l_[PADL_(l_dev_t)]; l_dev_t dev; char dev_r_[PADR_(l_dev_t)];
 	char ubuf_l_[PADL_(struct l_ustat *)]; struct l_ustat * ubuf; char ubuf_r_[PADR_(struct l_ustat *)];
 };
+struct linux_getppid_args {
+	register_t dummy;
+};
 struct linux_sigaction_args {
 	char sig_l_[PADL_(l_int)]; l_int sig; char sig_r_[PADR_(l_int)];
 	char nsa_l_[PADL_(l_osigaction_t *)]; l_osigaction_t * nsa; char nsa_r_[PADR_(l_osigaction_t *)];
@@ -959,6 +962,7 @@
 int	linux_fcntl(struct thread *, struct linux_fcntl_args *);
 int	linux_olduname(struct thread *, struct linux_olduname_args *);
 int	linux_ustat(struct thread *, struct linux_ustat_args *);
+int	linux_getppid(struct thread *, struct linux_getppid_args *);
 int	linux_sigaction(struct thread *, struct linux_sigaction_args *);
 int	linux_sgetmask(struct thread *, struct linux_sgetmask_args *);
 int	linux_ssetmask(struct thread *, struct linux_ssetmask_args *);

==== //depot/projects/soc2006/rdivacky_linuxolator/i386/linux/linux_syscall.h#17 (text+ko) ====

@@ -61,7 +61,7 @@
 #define	LINUX_SYS_chroot	61
 #define	LINUX_SYS_linux_ustat	62
 #define	LINUX_SYS_dup2	63
-#define	LINUX_SYS_getppid	64
+#define	LINUX_SYS_linux_getppid	64
 #define	LINUX_SYS_getpgrp	65
 #define	LINUX_SYS_setsid	66
 #define	LINUX_SYS_linux_sigaction	67

==== //depot/projects/soc2006/rdivacky_linuxolator/i386/linux/linux_sysent.c#17 (text+ko) ====

@@ -83,7 +83,7 @@
 	{ SYF_MPSAFE | AS(chroot_args), (sy_call_t *)chroot, AUE_CHROOT },	/* 61 = chroot */
 	{ SYF_MPSAFE | AS(linux_ustat_args), (sy_call_t *)linux_ustat, AUE_NULL },	/* 62 = linux_ustat */
 	{ SYF_MPSAFE | AS(dup2_args), (sy_call_t *)dup2, AUE_DUP2 },	/* 63 = dup2 */
-	{ SYF_MPSAFE | 0, (sy_call_t *)getppid, AUE_GETPPID },	/* 64 = getppid */
+	{ SYF_MPSAFE | 0, (sy_call_t *)linux_getppid, AUE_GETPPID },	/* 64 = linux_getppid */
 	{ SYF_MPSAFE | 0, (sy_call_t *)getpgrp, AUE_GETPGRP },	/* 65 = getpgrp */
 	{ SYF_MPSAFE | 0, (sy_call_t *)setsid, AUE_SETSID },	/* 66 = setsid */
 	{ SYF_MPSAFE | AS(linux_sigaction_args), (sy_call_t *)linux_sigaction, AUE_NULL },	/* 67 = linux_sigaction */


More information about the p4-projects mailing list