aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMatt Jacob <mjacob@FreeBSD.org>2000-10-23 18:39:30 +0000
committerMatt Jacob <mjacob@FreeBSD.org>2000-10-23 18:39:30 +0000
commitfc11653f20fd661aeb56c48cc12a4efa36c3cc86 (patch)
tree8370e7ae9209ef7ef1481cb131e8f38b0bd93ac5 /sys
parenteb661345a9b65d5259d24d1f5958889f88612697 (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/ia64/include/globals.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/ia64/include/globals.h b/sys/ia64/include/globals.h
index 07c44e71da0d..c036d9ec5365 100644
--- a/sys/ia64/include/globals.h
+++ b/sys/ia64/include/globals.h
@@ -30,6 +30,7 @@
#define _MACHINE_GLOBALS_H_
#ifdef _KERNEL
+#include <machine/globaldata.h>
register struct globaldata *globalp __asm__("r13");
@@ -49,6 +50,7 @@ register struct globaldata *globalp __asm__("r13");
* portability between UP and SMP kernels.
*/
#define CURPROC PCPU_GET(curproc)
+#define CURTHD PCPU_GET(curproc) /* temporary */
#define curproc PCPU_GET(curproc)
#define idleproc PCPU_GET(idleproc)
#define curpcb PCPU_GET(curpcb)