Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-5]: src/sys/uvm Pull up version 1.80 (VM_INHERIT -> MAP_INHERIT).



details:   https://anonhg.NetBSD.org/src/rev/444bbe1f8361
branches:  netbsd-1-5
changeset: 488885:444bbe1f8361
user:      fvdl <fvdl%NetBSD.org@localhost>
date:      Sun Aug 06 00:11:24 2000 +0000

description:
Pull up version 1.80 (VM_INHERIT -> MAP_INHERIT).

diffstat:

 sys/uvm/uvm_map.c |  14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diffs (47 lines):

diff -r 7aefe4852486 -r 444bbe1f8361 sys/uvm/uvm_map.c
--- a/sys/uvm/uvm_map.c Sat Aug 05 23:56:15 2000 +0000
+++ b/sys/uvm/uvm_map.c Sun Aug 06 00:11:24 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: uvm_map.c,v 1.77 2000/06/13 04:10:47 chs Exp $ */
+/*     $NetBSD: uvm_map.c,v 1.77.2.1 2000/08/06 00:11:24 fvdl Exp $    */
 
 /* 
  * Copyright (c) 1997 Charles D. Cranor and Washington University.
@@ -1840,9 +1840,9 @@
            map, start, end, new_inheritance);
 
        switch (new_inheritance) {
-       case VM_INHERIT_NONE:
-       case VM_INHERIT_COPY:
-       case VM_INHERIT_SHARE:
+       case MAP_INHERIT_NONE:
+       case MAP_INHERIT_COPY:
+       case MAP_INHERIT_SHARE:
                break;
        default:
                UVMHIST_LOG(maphist,"<- done (INVALID ARG)",0,0,0,0);
@@ -2929,13 +2929,13 @@
 
 
                switch (old_entry->inheritance) {
-               case VM_INHERIT_NONE:
+               case MAP_INHERIT_NONE:
                        /*
                         * drop the mapping
                         */
                        break;
 
-               case VM_INHERIT_SHARE:
+               case MAP_INHERIT_SHARE:
                        /*
                         * share the mapping: this means we want the old and
                         * new entries to share amaps and backing objects.
@@ -2992,7 +2992,7 @@
 
                        break;
 
-               case VM_INHERIT_COPY:
+               case MAP_INHERIT_COPY:
 
                        /*
                         * copy-on-write the mapping (using mmap's



Home | Main Index | Thread Index | Old Index