Make DFLDSIZ and MAXDSIZ fully-supported options.
"Don't forget to do a ``make depend''" :-)
This commit is contained in:
parent
2b490f7137
commit
63b6a05776
@ -1,4 +1,4 @@
|
||||
# $Id: options,v 1.18 1996/10/28 11:32:55 phk Exp $
|
||||
# $Id: options,v 1.19 1996/12/15 16:35:54 se Exp $
|
||||
|
||||
# Option name filename
|
||||
|
||||
@ -74,6 +74,8 @@ SCSI_NCR_DEBUG opt_ncr.h
|
||||
# Resource limits.
|
||||
CHILD_MAX opt_rlimit.h
|
||||
OPEN_MAX opt_rlimit.h
|
||||
MAXDSIZ opt_rlimit.h
|
||||
DFLDSIZ opt_rlimit.h
|
||||
|
||||
# Net stuff.
|
||||
MROUTING opt_mrouting.h
|
||||
|
@ -28,9 +28,11 @@
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
* $Id: imgact_linux.c,v 1.15 1996/05/02 10:43:12 phk Exp $
|
||||
* $Id: imgact_linux.c,v 1.16 1996/09/03 22:19:16 bde Exp $
|
||||
*/
|
||||
|
||||
#include "opt_rlimit.h"
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/resourcevar.h>
|
||||
|
@ -23,9 +23,11 @@
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: imgact_aout.c,v 1.28 1996/05/02 10:43:16 phk Exp $
|
||||
* $Id: imgact_aout.c,v 1.29 1996/08/31 16:52:22 bde Exp $
|
||||
*/
|
||||
|
||||
#include "opt_rlimit.h"
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/resourcevar.h>
|
||||
|
@ -26,9 +26,11 @@
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
* $Id: imgact_elf.c,v 1.11 1996/10/16 20:59:08 sos Exp $
|
||||
* $Id: imgact_elf.c,v 1.12 1996/10/24 19:13:00 sos Exp $
|
||||
*/
|
||||
|
||||
#include "opt_rlimit.h"
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/resourcevar.h>
|
||||
|
@ -6,7 +6,7 @@
|
||||
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
|
||||
* ----------------------------------------------------------------------------
|
||||
*
|
||||
* $Id: imgact_gzip.c,v 1.23 1996/08/01 22:00:14 phk Exp $
|
||||
* $Id: imgact_gzip.c,v 1.24 1996/08/31 16:52:24 bde Exp $
|
||||
*
|
||||
* This module handles execution of a.out files which have been run through
|
||||
* "gzip". This saves diskspace, but wastes cpu-cycles and VM.
|
||||
@ -21,6 +21,8 @@
|
||||
* tidy up unnecesary includes
|
||||
*/
|
||||
|
||||
#include "opt_rlimit.h"
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/exec.h>
|
||||
#include <sys/imgact.h>
|
||||
|
@ -36,9 +36,11 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* @(#)kern_resource.c 8.5 (Berkeley) 1/21/94
|
||||
* $Id: kern_resource.c,v 1.19 1996/03/11 06:04:20 hsu Exp $
|
||||
* $Id: kern_resource.c,v 1.20 1996/06/08 11:48:28 bde Exp $
|
||||
*/
|
||||
|
||||
#include "opt_rlimit.h"
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/sysproto.h>
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $Id: sysv_shm.c,v 1.22 1996/09/07 03:24:44 dyson Exp $ */
|
||||
/* $Id: sysv_shm.c,v 1.24 1996/09/10 22:35:25 dyson Exp $ */
|
||||
/* $NetBSD: sysv_shm.c,v 1.23 1994/07/04 23:25:12 glass Exp $ */
|
||||
|
||||
/*
|
||||
@ -32,6 +32,7 @@
|
||||
*/
|
||||
|
||||
#include "opt_sysvipc.h"
|
||||
#include "opt_rlimit.h"
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -59,9 +59,11 @@
|
||||
* any improvements or extensions that they make and grant Carnegie the
|
||||
* rights to redistribute these changes.
|
||||
*
|
||||
* $Id: vm_glue.c,v 1.54 1996/10/15 03:16:44 dyson Exp $
|
||||
* $Id: vm_glue.c,v 1.55 1996/10/17 02:58:20 dyson Exp $
|
||||
*/
|
||||
|
||||
#include "opt_rlimit.h"
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/proc.h>
|
||||
|
@ -38,13 +38,15 @@
|
||||
* from: Utah $Hdr: vm_mmap.c 1.6 91/10/21$
|
||||
*
|
||||
* @(#)vm_mmap.c 8.4 (Berkeley) 1/12/94
|
||||
* $Id: vm_mmap.c,v 1.53 1996/10/29 22:07:11 dyson Exp $
|
||||
* $Id: vm_mmap.c,v 1.54 1996/12/14 17:54:17 dyson Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
* Mapped file (mmap) interface to VM
|
||||
*/
|
||||
|
||||
#include "opt_rlimit.h"
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/sysproto.h>
|
||||
|
Loading…
x
Reference in New Issue
Block a user