aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/imgact_aout.c
diff options
context:
space:
mode:
authorMark Murray <markm@FreeBSD.org>2001-05-01 08:13:21 +0000
committerMark Murray <markm@FreeBSD.org>2001-05-01 08:13:21 +0000
commitfb919e4d5a2c1baca52ac70d1064f140fffdda71 (patch)
tree62c0461c4eb61081648eebf963146193ebdc7398 /sys/kern/imgact_aout.c
parent8904de15a20f7c5372ec763d2b637b0997485466 (diff)
downloadsrc-fb919e4d5a2c1baca52ac70d1064f140fffdda71.tar.gz
src-fb919e4d5a2c1baca52ac70d1064f140fffdda71.zip
Undo part of the tangle of having sys/lock.h and sys/mutex.h included in
other "system" header files. Also help the deprecation of lockmgr.h by making it a sub-include of sys/lock.h and removing sys/lockmgr.h form kernel .c files. Sort sys/*.h includes where possible in affected files. OK'ed by: bde (with reservations)
Notes
Notes: svn path=/head/; revision=76166
Diffstat (limited to 'sys/kern/imgact_aout.c')
-rw-r--r--sys/kern/imgact_aout.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/kern/imgact_aout.c b/sys/kern/imgact_aout.c
index 32f26306a940..9478eb39b4e7 100644
--- a/sys/kern/imgact_aout.c
+++ b/sys/kern/imgact_aout.c
@@ -27,30 +27,32 @@
*/
#include <sys/param.h>
-#include <sys/resourcevar.h>
#include <sys/exec.h>
#include <sys/fcntl.h>
#include <sys/imgact.h>
#include <sys/imgact_aout.h>
#include <sys/kernel.h>
+#include <sys/lock.h>
+#include <sys/mutex.h>
#include <sys/namei.h>
#include <sys/pioctl.h>
#include <sys/proc.h>
+#include <sys/resourcevar.h>
#include <sys/systm.h>
#include <sys/signalvar.h>
#include <sys/stat.h>
#include <sys/sysent.h>
#include <sys/syscall.h>
#include <sys/vnode.h>
+#include <sys/user.h>
+
#include <machine/md_var.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
-#include <sys/lock.h>
#include <vm/pmap.h>
#include <vm/vm_map.h>
#include <vm/vm_object.h>
-#include <sys/user.h>
static int exec_aout_imgact __P((struct image_params *imgp));