diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2001-07-22 19:58:18 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2001-07-22 19:58:18 +0000 |
commit | 5b929caa2345388979cb5b2a5e8a0b55c9deb8c8 (patch) | |
tree | 9a51b0209804ad9e54475307426dd065a90c2879 /sys/arch/mvme88k | |
parent | fcc967c94e28dae624b4f42b0532d50ed14a8088 (diff) |
pmap_clear_modify returns boolean_t
Diffstat (limited to 'sys/arch/mvme88k')
-rw-r--r-- | sys/arch/mvme88k/mvme88k/pmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mvme88k/mvme88k/pmap.c b/sys/arch/mvme88k/mvme88k/pmap.c index 77f0be10d53..874fe7dc35f 100644 --- a/sys/arch/mvme88k/mvme88k/pmap.c +++ b/sys/arch/mvme88k/mvme88k/pmap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.c,v 1.35 2001/07/18 10:47:04 art Exp $ */ +/* $OpenBSD: pmap.c,v 1.36 2001/07/22 19:58:17 miod Exp $ */ /* * Copyright (c) 1996 Nivas Madhur * All rights reserved. @@ -3317,7 +3317,7 @@ pmap_copy_page(vm_offset_t src, vm_offset_t dst) * entry inspected - and turned off if necessary. If any of the * inspected bits were found on, an TLB flush will be performed. */ -void +boolean_t pmap_clear_modify(struct vm_page *pg) { pv_entry_t pvl; |