Fix erroneous comment syntax.
[bpt/emacs.git] / src / mem-limits.h
CommitLineData
9889c728 1/* Includes for memory limit warnings.
f920c441 2 Copyright (C) 1990, 1993, 1994 Free Software Foundation, Inc.
9889c728
JB
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
cd1168e1 8the Free Software Foundation; either version 2, or (at your option)
9889c728
JB
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
18the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
004164c5
RS
20#ifdef MSDOS
21#include <dpmi.h>
22#endif
23
f920c441
RM
24/* Some systems need this before <sys/resource.h>. */
25#include <sys/types.h>
26
b1814de2
RM
27#ifdef _LIBC
28
29#include <sys/resource.h>
ab8fb193 30#define BSD4_2 /* Tell code below to use getrlimit. */
b1814de2
RM
31
32#else
33
9aae3fc9 34#if defined (__osf__) && (defined (__mips) || defined (mips) || defined(__alpha))
c027d070
JB
35#include <sys/time.h>
36#include <sys/resource.h>
37#endif
38
cd1168e1
RS
39#ifdef __bsdi__
40#define BSD4_2
41#endif
42
9889c728
JB
43#ifndef BSD4_2
44#ifndef USG
004164c5 45#ifndef MSDOS
dbecffaa 46#ifndef WINDOWSNT
9889c728 47#include <sys/vlimit.h>
dbecffaa 48#endif /* not WINDOWSNT */
004164c5 49#endif /* not MSDOS */
9889c728
JB
50#endif /* not USG */
51#else /* if BSD4_2 */
52#include <sys/time.h>
53#include <sys/resource.h>
54#endif /* BSD4_2 */
55
b1814de2
RM
56#endif /* _LIBC */
57
6fb48933 58#ifdef emacs
5399ec5d
JB
59/* The important properties of this type are that 1) it's a pointer, and
60 2) arithmetic on it should work as if the size of the object pointed
61 to has a size of 1. */
9889c728
JB
62#ifdef __STDC__
63typedef void *POINTER;
64#else
65typedef char *POINTER;
66#endif
67
68typedef unsigned long SIZE;
69
70#ifdef NULL
71#undef NULL
72#endif
73#define NULL ((POINTER) 0)
74
9889c728 75extern POINTER start_of_data ();
27050994
JB
76#ifdef DATA_SEG_BITS
77#define EXCEEDS_LISP_PTR(ptr) \
9aae3fc9 78 (((EMACS_UINT) (ptr) & ~DATA_SEG_BITS) >> VALBITS)
27050994 79#else
9aae3fc9 80#define EXCEEDS_LISP_PTR(ptr) ((EMACS_UINT) (ptr) >> VALBITS)
27050994 81#endif
9889c728
JB
82
83#ifdef BSD
84#ifndef DATA_SEG_BITS
94d7c01a 85extern char etext;
9889c728
JB
86#define start_of_data() &etext
87#endif
88#endif
89
90#else /* Not emacs */
94d7c01a 91extern char etext;
9889c728
JB
92#define start_of_data() &etext
93#endif /* Not emacs */
94
95
96
97/* start of data space; can be changed by calling malloc_init */
98static POINTER data_space_start;
99
100/* Number of bytes of writable memory we can expect to be able to get */
101static unsigned int lim_data;
102
19b8fb9d
RS
103#ifdef NO_LIM_DATA
104static void
105get_lim_data ()
106{
107 lim_data = -1;
108}
109#else /* not NO_LIM_DATA */
110
9889c728
JB
111#ifdef USG
112
c52713b1 113static void
9889c728
JB
114get_lim_data ()
115{
116 extern long ulimit ();
161aa2f8
JB
117
118 lim_data = -1;
119
120 /* Use the ulimit call, if we seem to have it. */
121#if !defined (ULIMIT_BREAK_VALUE) || defined (LINUX)
9889c728
JB
122 lim_data = ulimit (3, 0);
123#endif
124
161aa2f8
JB
125 /* If that didn't work, just use the macro's value. */
126#ifdef ULIMIT_BREAK_VALUE
127 if (lim_data == -1)
128 lim_data = ULIMIT_BREAK_VALUE;
129#endif
130
9889c728
JB
131 lim_data -= (long) data_space_start;
132}
133
134#else /* not USG */
dbecffaa
RS
135#ifdef WINDOWSNT
136
137static void
138get_lim_data ()
139{
140 extern unsigned long data_region_size;
141 lim_data = data_region_size;
142}
143
144#else
004164c5
RS
145#if !defined (BSD4_2) && !defined (__osf__)
146
147#ifdef MSDOS
148void
149get_lim_data ()
150{
151 _go32_dpmi_meminfo info;
9889c728 152
004164c5
RS
153 _go32_dpmi_get_free_memory_information (&info);
154 lim_data = info.available_memory;
155}
156#else /* not MSDOS */
c52713b1 157static void
9889c728
JB
158get_lim_data ()
159{
160 lim_data = vlimit (LIM_DATA, -1);
161}
004164c5 162#endif /* not MSDOS */
9889c728
JB
163
164#else /* BSD4_2 */
165
c52713b1 166static void
9889c728
JB
167get_lim_data ()
168{
169 struct rlimit XXrlimit;
170
171 getrlimit (RLIMIT_DATA, &XXrlimit);
172#ifdef RLIM_INFINITY
173 lim_data = XXrlimit.rlim_cur & RLIM_INFINITY; /* soft limit */
174#else
175 lim_data = XXrlimit.rlim_cur; /* soft limit */
176#endif
177}
178#endif /* BSD4_2 */
dbecffaa 179#endif /* not WINDOWSNT */
9889c728 180#endif /* not USG */
19b8fb9d 181#endif /* not NO_LIM_DATA */