Slight change to include file order to accommodate upcoming changes.

This commit is contained in:
David Greenman 1995-03-01 21:37:44 +00:00
parent 60e2f05af7
commit 54ab07303b
3 changed files with 8 additions and 7 deletions

View File

@ -23,18 +23,18 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id: db_trace.c,v 1.7 1994/08/06 10:25:33 davidg Exp $
* $Id: db_trace.c,v 1.8 1994/08/13 03:49:37 wollman Exp $
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/lock.h>
#include <vm/vm_prot.h>
#include <vm/pmap.h>
#include <sys/proc.h>
#include <ddb/ddb.h>
#include <ddb/db_access.h>

View File

@ -23,18 +23,18 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id: db_trace.c,v 1.7 1994/08/06 10:25:33 davidg Exp $
* $Id: db_trace.c,v 1.8 1994/08/13 03:49:37 wollman Exp $
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/lock.h>
#include <vm/vm_prot.h>
#include <vm/pmap.h>
#include <sys/proc.h>
#include <ddb/ddb.h>
#include <ddb/db_access.h>

View File

@ -61,7 +61,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id: kern_lock.c,v 1.2 1994/08/02 07:55:08 davidg Exp $
* $Id: kern_lock.c,v 1.3 1995/01/09 16:05:30 davidg Exp $
*/
/*
@ -71,10 +71,11 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <vm/vm.h>
/* XXX */
#include <sys/proc.h>
#include <vm/vm.h>
typedef int *thread_t;
#define current_thread() ((thread_t)&curproc->p_thread)