summaryrefslogtreecommitdiff
path: root/sys/kern/kern_kthread.c
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>1999-01-26 23:07:27 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>1999-01-26 23:07:27 +0000
commit4a884c4f0f09f49cbeda7a5b1a8f2df43d93dd10 (patch)
treec14d12b3520c261aa489cc0ae5599004f9d5f6ab /sys/kern/kern_kthread.c
parent9158de6d24bf9212c5537d90a30927552f8660ca (diff)
We need machine/cpu.h for the cpu_set_init_frame def
Diffstat (limited to 'sys/kern/kern_kthread.c')
-rw-r--r--sys/kern/kern_kthread.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/kern/kern_kthread.c b/sys/kern/kern_kthread.c
index 70297f93499..21e11e5cf04 100644
--- a/sys/kern/kern_kthread.c
+++ b/sys/kern/kern_kthread.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kern_kthread.c,v 1.2 1999/01/11 15:34:16 niklas Exp $ */
+/* $OpenBSD: kern_kthread.c,v 1.3 1999/01/26 23:07:26 niklas Exp $ */
/* $NetBSD: kern_kthread.c,v 1.3 1998/12/22 21:21:36 kleink Exp $ */
/*-
@@ -47,6 +47,8 @@
#include <sys/malloc.h>
#include <sys/queue.h>
+#include <machine/cpu.h>
+
/*
* note that stdarg.h and the ansi style va_start macro is used for both
* ansi and traditional c complers.