summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1998-12-05 17:33:02 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1998-12-05 17:33:02 +0000
commit119b7a84833de57d859cd3ff8b30158b5fd8f0a0 (patch)
tree7815a507511fd98f8daec398bbbcc08217f47a61 /sys
parent732bab00e116db024a1de77dbc656c4c08c649e3 (diff)
btlb_insert() now returns slot number, heartbeat() and cpu_gethpa(to get cpu#0 HPA) prototypes
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/hppa/include/cpufunc.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/arch/hppa/include/cpufunc.h b/sys/arch/hppa/include/cpufunc.h
index 3694bc037ee..3130110933f 100644
--- a/sys/arch/hppa/include/cpufunc.h
+++ b/sys/arch/hppa/include/cpufunc.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: cpufunc.h,v 1.3 1998/10/30 22:16:42 mickey Exp $ */
+/* $OpenBSD: cpufunc.h,v 1.4 1998/12/05 17:33:01 mickey Exp $ */
/*
* Copyright (c) 1998 Michael Shalayeff
@@ -187,8 +187,10 @@ pdtlbe(pa_space_t sp, vm_offset_t off)
struct pdc_cache;
void fcacheall __P((struct pdc_cache *));
void ptlball __P((struct pdc_cache *));
-int btlb_insert __P((int i, pa_space_t space, vm_offset_t va, vm_offset_t pa,
+int btlb_insert __P((pa_space_t space, vm_offset_t va, vm_offset_t pa,
vm_size_t *lenp, u_int prot));
+hppa_hpa_t cpu_gethpa __P((int n));
+void heartbeat __P((int on));
#endif
#endif /* _MACHINE_CPUFUNC_H_ */