Module Name: src
Committed By: matt
Date: Thu Jun 11 15:36:27 UTC 2015
Modified Files:
src/sys/arch/mips/include: kcore.h
Log Message:
u_int32_t -> uint32_t
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/mips/include/kcore.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/mips/include/kcore.h
diff -u src/sys/arch/mips/include/kcore.h:1.1 src/sys/arch/mips/include/kcore.h:1.2
--- src/sys/arch/mips/include/kcore.h:1.1 Thu Feb 19 23:06:11 1998
+++ src/sys/arch/mips/include/kcore.h Thu Jun 11 15:36:26 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: kcore.h,v 1.1 1998/02/19 23:06:11 thorpej Exp $ */
+/* $NetBSD: kcore.h,v 1.2 2015/06/11 15:36:26 matt Exp $ */
/*
* Copyright (c) 1996 Carnegie-Mellon University.
@@ -36,13 +36,12 @@
#define _MIPS_KCORE_H_
typedef struct cpu_kcore_hdr {
- u_int32_t sysmappa; /* PA of Sysmap */
- u_int32_t sysmapsize; /* size of Sysmap */
- u_int32_t archlevel; /* MIPS architecture level */
- u_int32_t pg_shift; /* PTE page frame num shift */
- u_int32_t pg_frame; /* PTE page frame num mask */
- u_int32_t pg_v; /* PTE valid bit */
- u_int32_t nmemsegs; /* Number of RAM segments */
+ uint64_t sysmappa; /* PA of Sysmap */
+ uint32_t archlevel; /* MIPS architecture level */
+ uint32_t pg_shift; /* PTE page frame num shift */
+ uint32_t pg_frame; /* PTE page frame num mask */
+ uint32_t pg_v; /* PTE valid bit */
+ uint32_t nmemsegs; /* Number of RAM segments */
#if 0
phys_ram_seg_t memsegs[]; /* RAM segments */
#endif