diff options
author | 2001-11-10 19:20:39 +0000 | |
---|---|---|
committer | 2001-11-10 19:20:39 +0000 | |
commit | 3e2a5430b84bd2d8e5b424dd2a4e4081328de908 (patch) | |
tree | 3d59ee01d434578e2794682ce587beebb1c66293 /sys/uvm/uvm_glue.c | |
parent | Merge in some parts of the ubc work that has been done in NetBSD that are not (diff) | |
download | wireguard-openbsd-3e2a5430b84bd2d8e5b424dd2a4e4081328de908.tar.xz wireguard-openbsd-3e2a5430b84bd2d8e5b424dd2a4e4081328de908.zip |
Move maxdmap and maxsmap to kern_resource.c
Diffstat (limited to 'sys/uvm/uvm_glue.c')
-rw-r--r-- | sys/uvm/uvm_glue.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sys/uvm/uvm_glue.c b/sys/uvm/uvm_glue.c index 809350d603f..78e881bef6e 100644 --- a/sys/uvm/uvm_glue.c +++ b/sys/uvm/uvm_glue.c @@ -1,5 +1,5 @@ -/* $OpenBSD: uvm_glue.c,v 1.25 2001/11/07 02:55:50 art Exp $ */ -/* $NetBSD: uvm_glue.c,v 1.43 2000/11/25 06:27:59 chs Exp $ */ +/* $OpenBSD: uvm_glue.c,v 1.26 2001/11/10 19:20:39 art Exp $ */ +/* $NetBSD: uvm_glue.c,v 1.44 2001/02/06 19:54:44 eeh Exp $ */ /* * Copyright (c) 1997 Charles D. Cranor and Washington University. @@ -95,9 +95,6 @@ static void uvm_swapout __P((struct proc *)); * XXXCDC: do these really belong here? */ -unsigned maxdmap = MAXDSIZ; /* kern_resource.c: RLIMIT_DATA max */ -unsigned maxsmap = MAXSSIZ; /* kern_resource.c: RLIMIT_STACK max */ - int readbuffers = 0; /* allow KGDB to read kern buffer pool */ /* XXX: see uvm_kernacc */ |