diff options
author | 1998-12-05 17:33:01 +0000 | |
---|---|---|
committer | 1998-12-05 17:33:01 +0000 | |
commit | bfe55d232d4782a4442caca6e7709f73e86b3d74 (patch) | |
tree | d6561a03d534b42b2a39578d92fbfd2ca32011a1 | |
parent | fake bus_space_barrier() (diff) | |
download | wireguard-openbsd-bfe55d232d4782a4442caca6e7709f73e86b3d74.tar.xz wireguard-openbsd-bfe55d232d4782a4442caca6e7709f73e86b3d74.zip |
btlb_insert() now returns slot number, heartbeat() and cpu_gethpa(to get cpu#0 HPA) prototypes
-rw-r--r-- | sys/arch/hppa/include/cpufunc.h | 6 |
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_ */ |