Module Name: src
Committed By: riastradh
Date: Sat Aug 20 23:18:40 UTC 2022
Modified Files:
src/sys/arch/amd64/include: pte.h
src/sys/arch/i386/include: pte.h
Log Message:
amd64/pte.h, i386/pte.h: Need sys/stdint.h for uintN_t.
To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/sys/arch/amd64/include/pte.h
cvs rdiff -u -r1.33 -r1.34 src/sys/arch/i386/include/pte.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/amd64/include/pte.h
diff -u src/sys/arch/amd64/include/pte.h:1.14 src/sys/arch/amd64/include/pte.h:1.15
--- src/sys/arch/amd64/include/pte.h:1.14 Sat Apr 25 15:26:16 2020
+++ src/sys/arch/amd64/include/pte.h Sat Aug 20 23:18:39 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: pte.h,v 1.14 2020/04/25 15:26:16 bouyer Exp $ */
+/* $NetBSD: pte.h,v 1.15 2022/08/20 23:18:39 riastradh Exp $ */
/*
* Copyright (c) 2001 Wasabi Systems, Inc.
@@ -68,6 +68,7 @@
/*
* Here we define the data types for PDEs and PTEs.
*/
+#include <sys/stdint.h>
typedef uint64_t pd_entry_t; /* PDE */
typedef uint64_t pt_entry_t; /* PTE */
#endif
Index: src/sys/arch/i386/include/pte.h
diff -u src/sys/arch/i386/include/pte.h:1.33 src/sys/arch/i386/include/pte.h:1.34
--- src/sys/arch/i386/include/pte.h:1.33 Sat Apr 25 15:26:17 2020
+++ src/sys/arch/i386/include/pte.h Sat Aug 20 23:18:40 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: pte.h,v 1.33 2020/04/25 15:26:17 bouyer Exp $ */
+/* $NetBSD: pte.h,v 1.34 2022/08/20 23:18:40 riastradh Exp $ */
/*
* Copyright (c) 2001 Wasabi Systems, Inc.
@@ -86,6 +86,7 @@
/*
* here we define the data types for PDEs and PTEs
*/
+#include <sys/stdint.h>
#ifdef PAE
typedef uint64_t pd_entry_t; /* PDE */
typedef uint64_t pt_entry_t; /* PTE */