aboutsummaryrefslogtreecommitdiff
path: root/sys/ddb
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2001-03-28 09:17:56 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2001-03-28 09:17:56 +0000
commitf34fa851e0b97ea3637d73827346927014e1b137 (patch)
tree2cd0230eaac847e88811b3c23c3cf39fd199008b /sys/ddb
parent5e980e229f3ed52731211607e437b2f6759ab71a (diff)
downloadsrc-f34fa851e0b97ea3637d73827346927014e1b137.tar.gz
src-f34fa851e0b97ea3637d73827346927014e1b137.zip
Catch up to header include changes:
- <sys/mutex.h> now requires <sys/systm.h> - <sys/mutex.h> and <sys/sx.h> now require <sys/lock.h>
Notes
Notes: svn path=/head/; revision=74914
Diffstat (limited to 'sys/ddb')
-rw-r--r--sys/ddb/db_ps.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/ddb/db_ps.c b/sys/ddb/db_ps.c
index 321621e1a630..bccda5a360c6 100644
--- a/sys/ddb/db_ps.c
+++ b/sys/ddb/db_ps.c
@@ -34,6 +34,8 @@
*/
#include <sys/param.h>
#include <sys/systm.h>
+#include <sys/lock.h>
+#include <sys/mutex.h>
#include <sys/proc.h>
#include <sys/cons.h>