File: rlimit.h

package info (click to toggle)
rc 1.5b2-0.1
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 540 kB
  • ctags: 756
  • sloc: ansic: 5,474; sh: 231; makefile: 138; yacc: 127
file content (42 lines) | stat: -rw-r--r-- 744 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* What a mess.  This file attempts to straighten everything out. */

#if HAVE_SETRLIMIT

#if HAVE_SYS_RESOURCE_H
#  include <sys/time.h>
#  if RLIMIT_NEEDS_KERNEL
#    define _KERNEL
#  endif
#  include <sys/resource.h>
#  if RLIMIT_NEEDS_KERNEL
#    undef _KERNEL
#  endif
#else
#  include <sys/times.h>
#endif

#if HAVE_LIMITS_H
#  include <limits.h>
#endif

#ifndef HAVE_RLIM_T
# if RLIM_T_IS_QUAD_T
typedef quad_t rlim_t;
# else
typedef long rlim_t;
# endif
#endif

#if HAVE_QUAD_T
# define RLIM_CONV quad_t
# define RLIM_FMT "%s \t%qd%s\n"
#else
# define RLIM_CONV long
# define RLIM_FMT "%s \t%ld%s\n"
#endif

#if defined(RLIMIT_OFILE) && !defined (RLIMIT_NOFILE)
#  define RLIMIT_NOFILE RLIMIT_OFILE
#endif

#endif /* HAVE_SETRLIMIT */