diff options
| author | Doug Rabson <dfr@FreeBSD.org> | 1998-09-04 08:06:57 +0000 |
|---|---|---|
| committer | Doug Rabson <dfr@FreeBSD.org> | 1998-09-04 08:06:57 +0000 |
| commit | e69763a3151b74e75a43b96cd72caf47b12fc0db (patch) | |
| tree | f19b8ea8297cc14146ebb32b206e49786ba7262e /sys/kern/kern_exec.c | |
| parent | bd2bbbf2f32a6178c75a598b64d2d06aeebf1c69 (diff) | |
Notes
Diffstat (limited to 'sys/kern/kern_exec.c')
| -rw-r--r-- | sys/kern/kern_exec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/kern_exec.c b/sys/kern/kern_exec.c index c77fe20ba65c..a78862981a56 100644 --- a/sys/kern/kern_exec.c +++ b/sys/kern/kern_exec.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: kern_exec.c,v 1.84 1998/07/15 06:19:33 bde Exp $ + * $Id: kern_exec.c,v 1.85 1998/08/24 08:39:38 dfr Exp $ */ #include <sys/param.h> @@ -370,7 +370,7 @@ exec_map_first_page(imgp) break; if (ma[i]->valid) break; - PAGE_SET_FLAG(ma[i], PG_BUSY); + vm_page_busy(ma[i]); } else { ma[i] = vm_page_alloc(object, i, VM_ALLOC_NORMAL); if (ma[i] == NULL) @@ -393,7 +393,7 @@ exec_map_first_page(imgp) } vm_page_wire(ma[0]); - PAGE_WAKEUP(ma[0]); + vm_page_wakeup(ma[0]); splx(s); pmap_kenter((vm_offset_t) imgp->image_header, VM_PAGE_TO_PHYS(ma[0])); |
