summaryrefslogtreecommitdiff
path: root/sys/arch/alpha/include/proc.h
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>1996-10-30 22:41:57 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>1996-10-30 22:41:57 +0000
commit072b56c97e17e8e69ddab5a735b5297387a88a70 (patch)
tree22eaee09956502609c240ddff8a108d8733521f9 /sys/arch/alpha/include/proc.h
parentb85b15782739220b5bf2563ccdc7ac9e256a31d2 (diff)
Merge to NetBSD 961020. Retained our kernel APIs where NetBSD has changed.
-Wall -Wstrict-prototypes -Wmissing-prototypes too.
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