summaryrefslogtreecommitdiff
path: root/sys/uvm/uvm_map_i.h
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>1999-08-23 08:13:26 +0000
committerArtur Grabowski <art@cvs.openbsd.org>1999-08-23 08:13:26 +0000
commit5e018d13123ba2850afd208f355a0577361e19d2 (patch)
tree88d1b9ad76f66ffad16bab3cc37857968ca274ac /sys/uvm/uvm_map_i.h
parent238f8e71e72bda976d468ba8817e92e5248e25d3 (diff)
sync with NetBSD from 1999.05.24 (there is a reason for this date)
Mostly cleanups, but also a few improvements to pagedaemon for better handling of low memory and/or low swap conditions.
Diffstat (limited to 'sys/uvm/uvm_map_i.h')
-rw-r--r--sys/uvm/uvm_map_i.h13
1 files changed, 2 insertions, 11 deletions
diff --git a/sys/uvm/uvm_map_i.h b/sys/uvm/uvm_map_i.h
index 032547d4619..e56ba28e5e9 100644
--- a/sys/uvm/uvm_map_i.h
+++ b/sys/uvm/uvm_map_i.h
@@ -1,10 +1,5 @@
-/* $OpenBSD: uvm_map_i.h,v 1.2 1999/02/26 05:32:07 art Exp $ */
-/* $NetBSD: uvm_map_i.h,v 1.10 1998/10/11 23:14:48 chuck Exp $ */
+/* $NetBSD: uvm_map_i.h,v 1.11 1999/03/25 18:48:53 mrg Exp $ */
-/*
- * XXXCDC: "ROUGH DRAFT" QUALITY UVM PRE-RELEASE FILE!
- * >>>USE AT YOUR OWN RISK, WORK IS NOT FINISHED<<<
- */
/*
* Copyright (c) 1997 Charles D. Cranor and Washington University.
* Copyright (c) 1991, 1993, The Regents of the University of California.
@@ -140,10 +135,6 @@ uvm_map_setup(map, min, max, pageable)
*
* => caller must check alignment and size
* => map must be unlocked (we will lock it)
- * => if the "start"/"stop" range lie within a mapping of a share map,
- * then the unmap takes place within the context of that share map
- * rather than in the main map, unless the "mainonly" flag is set.
- * (e.g. the "exit" system call would want to set "mainonly").
*/
MAP_INLINE int
@@ -156,7 +147,7 @@ uvm_unmap(map, start, end)
UVMHIST_FUNC("uvm_unmap"); UVMHIST_CALLED(maphist);
UVMHIST_LOG(maphist, " (map=0x%x, start=0x%x, end=0x%x)",
- map, start, end, 0);
+ map, start, end, 0);
/*
* work now done by helper functions. wipe the pmap's and then
* detach from the dead entries...