From 69fcc26071ebf22551e2fc3b156cc31a5a0ad499 Mon Sep 17 00:00:00 2001 From: msaitoh Date: Fri, 14 Jan 2000 16:06:11 +0000 Subject: [PATCH] write through bit (SH4) --- sys/arch/sh3/include/pte.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sys/arch/sh3/include/pte.h b/sys/arch/sh3/include/pte.h index 72faed091f37..bd14cd4cd381 100644 --- a/sys/arch/sh3/include/pte.h +++ b/sys/arch/sh3/include/pte.h @@ -1,4 +1,4 @@ -/* $NetBSD: pte.h,v 1.1 1999/09/13 10:31:21 itojun Exp $ */ +/* $NetBSD: pte.h,v 1.2 2000/01/14 16:06:11 msaitoh Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -83,6 +83,10 @@ typedef int pt_entry_t; /* Mach page table entry */ #define PG_4K 0x00000010 #define PG_G 0x00000002 /* share status */ +#ifdef SH4 +#define PG_WT 0x00000001 /* write through */ +#endif + #ifndef _LOCORE #ifdef _KERNEL /* utilities defined in pmap.c */