Version bump.
[fwd] / rlimits.h
CommitLineData
3b7defab 1/* -*-c-*-
2 *
3 * $Id: rlimits.h,v 1.1 1999/07/26 23:33:56 mdw Exp $
4 *
5 * List of resource limits known to mankind
6 *
7 * (c) 1999 Straylight/Edgeware
8 */
9
10/*----- Licensing notice --------------------------------------------------*
11 *
12 * This file is part of the `fw' port forwarder.
13 *
14 * `fw' is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
18 *
19 * `fw' is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with `fw'; if not, write to the Free Software Foundation,
26 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27 */
28
29/*----- Revision history --------------------------------------------------*
30 *
31 * $Log: rlimits.h,v $
32 * Revision 1.1 1999/07/26 23:33:56 mdw
33 * Support code for new design.
34 *
35 */
36
37/*----- Magic -------------------------------------------------------------*/
38
39#ifndef R
40# error "Don't try including rlimits.h unless you know what you're doing"
41#endif
42
43#if defined(RLIMIT_OFILE) && !defined(RLIMIT_NOFILE)
44# define RLIMIT_NOFILE RLIMIT_OFILE
45#endif
46
47#ifdef RLIMIT_CPU
48 R(RLIMIT_CPU, cpu)
49#endif
50#ifdef RLIMIT_FSIZE
51 R(RLIMIT_FSIZE, fsize)
52#endif
53#ifdef RLIMIT_DATA
54 R(RLIMIT_DATA, data)
55#endif
56#ifdef RLIMIT_STACK
57 R(RLIMIT_STACK, stack)
58#endif
59#ifdef RLIMIT_CORE
60 R(RLIMIT_CORE, core)
61#endif
62#ifdef RLIMIT_RSS
63 R(RLIMIT_RSS, rss)
64#endif
65#ifdef RLIMIT_NPROC
66 R(RLIMIT_NPROC, nproc)
67#endif
68#ifdef RLIMIT_NOFILE
69 R(RLIMIT_NOFILE, nofile)
70#endif
71#ifdef RLIMIT_MEMLOCK
72 R(RLIMIT_MEMLOCK, memlock)
73#endif
74#ifdef RLIMIT_VMEM
75 R(RLIMIT_VMEM, vmem)
76#endif
77#ifdef RLIMIT_AS
78 R(RLIMIT_AS, as)
79#endif
80
81#undef R
82
83/*----- That's all, folks -------------------------------------------------*/