blob: 4837def759485f248dd794e07bb7524391226d2a (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* $OpenBSD: kcore.h,v 1.1 2006/06/11 22:09:32 miod Exp $ */
/* public domain */
/* Keep this define consistent with VM_PHYSSEG_MAX in <machine/vmparam.h> */
#define NPHYS_RAM_SEGS 1
typedef struct cpu_kcore_hdr {
vaddr_t sysmap;
phys_ram_seg_t ram_segs[NPHYS_RAM_SEGS];
} cpu_kcore_hdr_t;
|