[BACK]Return to uvm_mmap.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / uvm

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/uvm/uvm_mmap.c between version 1.64 and 1.65

version 1.64, 2002/05/31 16:49:50 version 1.65, 2002/09/06 13:18:43
Line 381  sys_mmap(p, v, retval)
Line 381  sys_mmap(p, v, retval)
                         return (EOVERFLOW);             /* no offset wrapping */                          return (EOVERFLOW);             /* no offset wrapping */
   
                 /* special case: catch SunOS style /dev/zero */                  /* special case: catch SunOS style /dev/zero */
                 if (vp->v_type == VCHR && iszerodev(vp->v_rdev)) {                  if (vp->v_type == VCHR && vp->v_rdev == zerodev) {
                         flags |= MAP_ANON;                          flags |= MAP_ANON;
                         goto is_anon;                          goto is_anon;
                 }                  }

Legend:
Removed from v.1.64  
changed lines
  Added in v.1.65

CVSweb <webmaster@jp.NetBSD.org>