summaryrefslogtreecommitdiff
path: root/sys/arch/alpha/include/proc.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/alpha/include/proc.h')
-rw-r--r--sys/arch/alpha/include/proc.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/arch/alpha/include/proc.h b/sys/arch/alpha/include/proc.h
index 4460c2e8c25..5794e0244de 100644
--- a/sys/arch/alpha/include/proc.h
+++ b/sys/arch/alpha/include/proc.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: proc.h,v 1.2 1996/07/29 22:59:03 niklas Exp $ */
+/* $OpenBSD: proc.h,v 1.3 1996/10/30 22:39:19 niklas Exp $ */
/* $NetBSD: proc.h,v 1.2 1995/03/24 15:01:36 cgd Exp $ */
/*
@@ -39,3 +39,8 @@ struct mdproc {
};
#define MDP_FPUSED 0x0001 /* Process used the FPU */
+
+#ifdef _KERNEL
+void switch_exit __P((struct proc *));
+void switch_trampoline __P((void (*) __P((struct proc *)), void *));
+#endif