PERFORCE change 100882 for review

Wojciech A. Koszek wkoszek at FreeBSD.org
Fri Jul 7 14:09:34 UTC 2006


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

Change 100882 by wkoszek at wkoszek_laptop on 2006/07/07 14:08:40

	Bring sysarch() to sys_machdep.c

Affected files ...

.. //depot/projects/mips2/src/sys/mips/mips/sys_machdep.c#2 edit

Differences ...

==== //depot/projects/mips2/src/sys/mips/mips/sys_machdep.c#2 (text+ko) ====

@@ -27,3 +27,34 @@
 
 #include <sys/cdefs.h>
 __FBSDID("$FreeBSD$");
+
+#include <sys/param.h>
+#include <sys/systm.h>
+#include <sys/lock.h>
+#include <sys/proc.h>
+#include <sys/sysproto.h>
+/*
+ * XXXMIPS: Comment it for now.
+ */
+#if 0
+#include <machine/specialreg.h>
+#endif
+#include <machine/sysarch.h>
+#include <machine/pcb.h>
+
+#include <vm/vm.h>
+#include <vm/pmap.h>
+#include <machine/vmparam.h>
+
+#ifndef _SYS_SYSPROTO_H_
+struct sysarch_args {
+	int op;
+	char *parms;
+};
+#endif
+
+int
+sysarch(struct thread *td, register struct sysarch_args *uap)
+{
+	return (0);
+}


More information about the p4-projects mailing list