From 78742dd0e010b7d431b618a6203e9314f72f6268 Mon Sep 17 00:00:00 2001 From: fvdl Date: Mon, 10 Sep 2001 10:11:21 +0000 Subject: [PATCH] Add flag to indicate that a process set some mtrrs that need to be cleaned up automatically on exit. --- sys/arch/i386/include/proc.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/arch/i386/include/proc.h b/sys/arch/i386/include/proc.h index 9b1a22b23b75..1f5c45873bcc 100644 --- a/sys/arch/i386/include/proc.h +++ b/sys/arch/i386/include/proc.h @@ -1,4 +1,4 @@ -/* $NetBSD: proc.h,v 1.13 2000/12/11 10:22:55 tron Exp $ */ +/* $NetBSD: proc.h,v 1.14 2001/09/10 10:11:21 fvdl Exp $ */ /* * Copyright (c) 1991 Regents of the University of California. @@ -50,3 +50,4 @@ struct mdproc { /* md_flags */ #define MDP_USEDFPU 0x0001 /* has used the FPU */ +#define MDP_USEDMTRR 0x0002 /* has set volatile MTRRs */