Date: Fri, 7 Jul 2006 14:09:33 GMT From: "Wojciech A. Koszek" <wkoszek@FreeBSD.org> To: Perforce Change Reviews <perforce@FreeBSD.org> Subject: PERFORCE change 100882 for review Message-ID: <200607071409.k67E9XhS023094@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=100882 Change 100882 by wkoszek@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); +}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200607071409.k67E9XhS023094>