4.3BSD-UWisc/include/sys/vlimit.h
/*
* Copyright (c) 1982, 1986 Regents of the University of California.
* All rights reserved. The Berkeley software License Agreement
* specifies the terms and conditions for redistribution.
*
* @(#)vlimit.h 7.1 (Berkeley) 6/4/86
*/
/*
* RCS Info
* $Header: vlimit.h,v 3.1 86/10/22 13:30:20 tadl Exp $
* $Locker: $
*/
/*
* Limits for u.u_limit[i], per process, inherited.
*/
#define LIM_NORAISE 0 /* if <> 0, can't raise limits */
#define LIM_CPU 1 /* max secs cpu time */
#define LIM_FSIZE 2 /* max size of file created */
#define LIM_DATA 3 /* max growth of data space */
#define LIM_STACK 4 /* max growth of stack */
#define LIM_CORE 5 /* max size of ``core'' file */
#define LIM_MAXRSS 6 /* max desired data+stack core usage */
#define NLIMITS 6
#define INFINITY 0x7fffffff