Source-Changes-HG archive

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

[src/trunk]: src/sys/arch No longer need <machine/pte.h>.



details:   https://anonhg.NetBSD.org/src/rev/6eedd9a838e1
branches:  trunk
changeset: 518051:6eedd9a838e1
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Fri Nov 23 20:43:03 2001 +0000

description:
No longer need <machine/pte.h>.

diffstat:

 sys/arch/acorn32/include/Makefile |   4 ++--
 sys/arch/acorn32/include/pte.h    |   3 ---
 sys/arch/arm26/include/Makefile   |   4 ++--
 sys/arch/arm26/include/pte.h      |  39 ---------------------------------------
 sys/arch/arm32/include/Makefile   |   4 ++--
 sys/arch/arm32/include/pte.h      |   3 ---
 sys/arch/hpcarm/include/Makefile  |   4 ++--
 sys/arch/hpcarm/include/pte.h     |   3 ---
 8 files changed, 8 insertions(+), 56 deletions(-)

diffs (136 lines):

diff -r 6f8e2ccf0d26 -r 6eedd9a838e1 sys/arch/acorn32/include/Makefile
--- a/sys/arch/acorn32/include/Makefile Fri Nov 23 20:21:49 2001 +0000
+++ b/sys/arch/acorn32/include/Makefile Fri Nov 23 20:43:03 2001 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.5 2001/11/23 19:51:32 thorpej Exp $
+#      $NetBSD: Makefile,v 1.6 2001/11/23 20:43:03 thorpej Exp $
 
 KDIR=  /sys/arch/acorn32/include
 INCSDIR= /usr/include/acorn32
@@ -16,7 +16,7 @@
        kbd.h \
        limits.h lock.h \
        math.h mouse.h \
-       param.h pcb.h pmap.h proc.h profile.h psl.h pte.h ptrace.h \
+       param.h pcb.h pmap.h proc.h profile.h psl.h ptrace.h \
        reg.h rtc.h \
        setjmp.h signal.h stdarg.h sysarch.h \
        trap.h types.h \
diff -r 6f8e2ccf0d26 -r 6eedd9a838e1 sys/arch/acorn32/include/pte.h
--- a/sys/arch/acorn32/include/pte.h    Fri Nov 23 20:21:49 2001 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,3 +0,0 @@
-/* $NetBSD: pte.h,v 1.1 2001/10/05 22:27:52 reinoud Exp $ */
-
-#include <arm/pte.h>
diff -r 6f8e2ccf0d26 -r 6eedd9a838e1 sys/arch/arm26/include/Makefile
--- a/sys/arch/arm26/include/Makefile   Fri Nov 23 20:21:49 2001 +0000
+++ b/sys/arch/arm26/include/Makefile   Fri Nov 23 20:43:03 2001 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.10 2001/10/06 20:30:02 bjh21 Exp $
+#      $NetBSD: Makefile,v 1.11 2001/11/23 20:43:05 thorpej Exp $
 
 KDIR=  /sys/arch/arm26/include
 INCSDIR= /usr/include/arm26
@@ -14,7 +14,7 @@
        intr.h ipkdb.h irq.h \
        limits.h lock.h \
        math.h \
-       param.h pcb.h pmap.h proc.h profile.h pte.h ptrace.h \
+       param.h pcb.h pmap.h proc.h profile.h ptrace.h \
        reg.h \
        setjmp.h signal.h stdarg.h sysarch.h \
        trap.h types.h \
diff -r 6f8e2ccf0d26 -r 6eedd9a838e1 sys/arch/arm26/include/pte.h
--- a/sys/arch/arm26/include/pte.h      Fri Nov 23 20:21:49 2001 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,39 +0,0 @@
-/* $NetBSD: pte.h,v 1.2 2001/09/03 19:20:28 matt Exp $ */
-/*-
- * Copyright (c) 1998 Ben Harris
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- * 3. The name of the author may not be used to endorse or promote products
- *    derived from this software without specific prior written permission.
- * 
- * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
- * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
- * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
- * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
- * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
- * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-/* This file is part of NetBSD/arm26 -- a port of NetBSD to ARM2/3 machines. */
-
-#ifndef _ARM26_PTE_H
-#define _ARM26_PTE_H
-
-/*
- * <arm/pte.h> is the arm32 pte.h (arm26 doesn't have one) but is needed for
- * the shared pcb.h
- */
-#include <arm/pte.h>
-
-#endif
diff -r 6f8e2ccf0d26 -r 6eedd9a838e1 sys/arch/arm32/include/Makefile
--- a/sys/arch/arm32/include/Makefile   Fri Nov 23 20:21:49 2001 +0000
+++ b/sys/arch/arm32/include/Makefile   Fri Nov 23 20:43:03 2001 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.18 2001/11/23 19:51:32 thorpej Exp $
+#      $NetBSD: Makefile,v 1.19 2001/11/23 20:43:06 thorpej Exp $
 
 KDIR=  /sys/arch/arm32/include
 INCSDIR= /usr/include/arm32
@@ -16,7 +16,7 @@
        kbd.h \
        limits.h lock.h \
        math.h mouse.h \
-       param.h pcb.h pmap.h proc.h profile.h psl.h pte.h ptrace.h \
+       param.h pcb.h pmap.h proc.h profile.h psl.h ptrace.h \
        reg.h rtc.h \
        setjmp.h signal.h stdarg.h sysarch.h \
        trap.h types.h \
diff -r 6f8e2ccf0d26 -r 6eedd9a838e1 sys/arch/arm32/include/pte.h
--- a/sys/arch/arm32/include/pte.h      Fri Nov 23 20:21:49 2001 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,3 +0,0 @@
-/* $NetBSD: pte.h,v 1.10 2001/02/23 21:23:51 reinoud Exp $ */
-
-#include <arm/pte.h>
diff -r 6f8e2ccf0d26 -r 6eedd9a838e1 sys/arch/hpcarm/include/Makefile
--- a/sys/arch/hpcarm/include/Makefile  Fri Nov 23 20:21:49 2001 +0000
+++ b/sys/arch/hpcarm/include/Makefile  Fri Nov 23 20:43:03 2001 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.10 2001/11/23 19:51:33 thorpej Exp $
+#      $NetBSD: Makefile,v 1.11 2001/11/23 20:43:07 thorpej Exp $
 
 KDIR=  /sys/arch/hpcarm/include
 INCSDIR= /usr/include/hpcarm
@@ -15,7 +15,7 @@
        limits.h lock.h \
        math.h \
        param.h pcb.h platid.h platid_generated.h platid_mask.h pmap.h \
-       proc.h profile.h profileio.h psl.h pte.h ptrace.h \
+       proc.h profile.h profileio.h psl.h ptrace.h \
        reg.h rtc.h \
        setjmp.h signal.h stdarg.h sysarch.h \
        trap.h types.h \
diff -r 6f8e2ccf0d26 -r 6eedd9a838e1 sys/arch/hpcarm/include/pte.h
--- a/sys/arch/hpcarm/include/pte.h     Fri Nov 23 20:21:49 2001 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,3 +0,0 @@
-/* $NetBSD: pte.h,v 1.2 2001/02/23 21:23:52 reinoud Exp $ */
-
-#include <arm/pte.h>



Home | Main Index | Thread Index | Old Index