diff options
author | dg <dg@FreeBSD.org> | 1994-09-04 23:10:27 +0000 |
---|---|---|
committer | dg <dg@FreeBSD.org> | 1994-09-04 23:10:27 +0000 |
commit | 8747eb313fb114149090b0aaffc1bd4b460c6807 (patch) | |
tree | 5605f81c407499e0012e5c348f05b787e6e4ca2c /sys | |
parent | 911bec5ce266934f5335897c94f32a557fe32474 (diff) | |
download | FreeBSD-src-8747eb313fb114149090b0aaffc1bd4b460c6807.zip FreeBSD-src-8747eb313fb114149090b0aaffc1bd4b460c6807.tar.gz |
Improved some comments.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/amd64/include/specialreg.h | 4 | ||||
-rw-r--r-- | sys/i386/include/pte.h | 4 | ||||
-rw-r--r-- | sys/i386/include/specialreg.h | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/sys/amd64/include/specialreg.h b/sys/amd64/include/specialreg.h index bcc9985..d791060 100644 --- a/sys/amd64/include/specialreg.h +++ b/sys/amd64/include/specialreg.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)specialreg.h 7.1 (Berkeley) 5/9/91 - * $Id: specialreg.h,v 1.3 1993/11/07 17:43:11 wollman Exp $ + * $Id: specialreg.h,v 1.4 1994/09/04 19:59:24 pst Exp $ */ #ifndef _MACHINE_SPECIALREG_H_ @@ -57,7 +57,7 @@ */ #define CR0_NE 0x00000020 /* Numeric Error enable (EX16 vs IRQ13) */ -#define CR0_WP 0x00010000 /* Write Protect (honor ~PG_W in all modes) */ +#define CR0_WP 0x00010000 /* Write Protect (honor page protect in all modes) */ #ifdef notyet #define CR0_AM 0x00040000 /* Alignment Mask (set to enable AC flag) */ #endif diff --git a/sys/i386/include/pte.h b/sys/i386/include/pte.h index feb74a4..5f473d8 100644 --- a/sys/i386/include/pte.h +++ b/sys/i386/include/pte.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)pte.h 5.5 (Berkeley) 5/9/91 - * $Id: pte.h,v 1.4 1994/01/31 06:52:41 davidg Exp $ + * $Id: pte.h,v 1.6 1994/05/25 08:56:34 rgrimes Exp $ */ #ifndef _MACHINE_PTE_H_ @@ -94,7 +94,7 @@ unsigned int #define PG_N 0x00000018 /* Non-cacheable */ #define PG_U 0x00000020 /* page was accessed */ #define PG_M 0x00000040 /* page was modified */ -#define PG_W 0x00000200 +#define PG_W 0x00000200 /* "Wired" pseudoflag */ #define PG_FRAME 0xfffff000 #define PG_NOACC 0 diff --git a/sys/i386/include/specialreg.h b/sys/i386/include/specialreg.h index bcc9985..d791060 100644 --- a/sys/i386/include/specialreg.h +++ b/sys/i386/include/specialreg.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)specialreg.h 7.1 (Berkeley) 5/9/91 - * $Id: specialreg.h,v 1.3 1993/11/07 17:43:11 wollman Exp $ + * $Id: specialreg.h,v 1.4 1994/09/04 19:59:24 pst Exp $ */ #ifndef _MACHINE_SPECIALREG_H_ @@ -57,7 +57,7 @@ */ #define CR0_NE 0x00000020 /* Numeric Error enable (EX16 vs IRQ13) */ -#define CR0_WP 0x00010000 /* Write Protect (honor ~PG_W in all modes) */ +#define CR0_WP 0x00010000 /* Write Protect (honor page protect in all modes) */ #ifdef notyet #define CR0_AM 0x00040000 /* Alignment Mask (set to enable AC flag) */ #endif |