PERFORCE change 79258 for review
Peter Wemm
peter at FreeBSD.org
Thu Jun 30 07:15:14 GMT 2005
http://perforce.freebsd.org/chv.cgi?CH=79258
Change 79258 by peter at peter_freefall on 2005/06/30 07:14:37
#include diet
Affected files ...
.. //depot/projects/hammer/sys/ia64/ia32/ia32_reg.c#2 edit
Differences ...
==== //depot/projects/hammer/sys/ia64/ia32/ia32_reg.c#2 (text+ko) ====
@@ -30,53 +30,17 @@
__FBSDID("$FreeBSD$");
#include <sys/param.h>
-#include <sys/exec.h>
-#include <sys/fcntl.h>
-#include <sys/imgact.h>
-#include <sys/kernel.h>
-#include <sys/lock.h>
-#include <sys/malloc.h>
-#include <sys/mutex.h>
-#include <sys/mman.h>
-#include <sys/namei.h>
-#include <sys/pioctl.h>
+#include <sys/systm.h>
#include <sys/proc.h>
#include <sys/procfs.h>
-#include <sys/resourcevar.h>
-#include <sys/systm.h>
-#include <sys/signalvar.h>
-#include <sys/stat.h>
-#include <sys/sx.h>
-#include <sys/syscall.h>
-#include <sys/sysctl.h>
-#include <sys/sysent.h>
-#include <sys/vnode.h>
-
-#include <vm/vm.h>
-#include <vm/vm_kern.h>
-#include <vm/vm_param.h>
-#include <vm/pmap.h>
-#include <vm/vm_map.h>
-#include <vm/vm_object.h>
-#include <vm/vm_extern.h>
-#include <compat/freebsd32/freebsd32_util.h>
-#include <compat/freebsd32/freebsd32_proto.h>
-#include <machine/fpu.h>
#include <compat/ia32/ia32_reg.h>
-#include <machine/psl.h>
-#include <machine/segments.h>
-#include <machine/specialreg.h>
-#include <machine/frame.h>
-#include <machine/md_var.h>
-#include <machine/pcb.h>
-#include <machine/cpufunc.h>
int
fill_regs32(struct thread *td, struct reg32 *regs)
{
- bzero(regs, sizeof(*regs);
+ bzero(regs, sizeof(*regs));
return (EOPNOTSUPP);
}
@@ -106,7 +70,7 @@
fill_dbregs32(struct thread *td, struct dbreg32 *regs)
{
- bzero(regs, sizeof(*regs);
+ bzero(regs, sizeof(*regs));
return (EOPNOTSUPP);
}
More information about the p4-projects
mailing list