Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch amd64/pte.h, i386/pte.h: Need sys/stdint.h for uint...



details:   https://anonhg.NetBSD.org/src/rev/139c1a71bd9e
branches:  trunk
changeset: 369528:139c1a71bd9e
user:      riastradh <riastradh%NetBSD.org@localhost>
date:      Sat Aug 20 23:18:39 2022 +0000

description:
amd64/pte.h, i386/pte.h: Need sys/stdint.h for uintN_t.

diffstat:

 sys/arch/amd64/include/pte.h |  3 ++-
 sys/arch/i386/include/pte.h  |  3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diffs (34 lines):

diff -r 093d4fa79f71 -r 139c1a71bd9e sys/arch/amd64/include/pte.h
--- a/sys/arch/amd64/include/pte.h      Sat Aug 20 23:18:20 2022 +0000
+++ b/sys/arch/amd64/include/pte.h      Sat Aug 20 23:18:39 2022 +0000
@@ -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
diff -r 093d4fa79f71 -r 139c1a71bd9e sys/arch/i386/include/pte.h
--- a/sys/arch/i386/include/pte.h       Sat Aug 20 23:18:20 2022 +0000
+++ b/sys/arch/i386/include/pte.h       Sat Aug 20 23:18:39 2022 +0000
@@ -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 */



Home | Main Index | Thread Index | Old Index