Mercurial > emacs
annotate src/mem-limits.h @ 3287:f3c8ed7fcb45
Fix initial comments.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 30 May 1993 03:42:55 +0000 |
parents | 6e19d9e130c0 |
children | 2df248d76c58 |
rev | line source |
---|---|
486 | 1 /* Includes for memory limit warnings. |
2961 | 2 Copyright (C) 1990, 1993 Free Software Foundation, Inc. |
486 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
8 the Free Software Foundation; either version 1, or (at your option) | |
9 any later version. | |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
3055 | 20 #if defined(__osf__) && (defined(__mips) || defined(mips)) |
21 #include <sys/time.h> | |
22 #include <sys/resource.h> | |
23 #endif | |
24 | |
486 | 25 #ifndef BSD4_2 |
26 #ifndef USG | |
27 #include <sys/vlimit.h> | |
28 #endif /* not USG */ | |
29 #else /* if BSD4_2 */ | |
30 #include <sys/time.h> | |
31 #include <sys/resource.h> | |
32 #endif /* BSD4_2 */ | |
33 | |
1393
d2ae5897e43c
[!emacs]: Don't define POINTER, SIZE or NULL.
Richard M. Stallman <rms@gnu.org>
parents:
734
diff
changeset
|
34 #ifdef emacs |
575 | 35 /* The important properties of this type are that 1) it's a pointer, and |
36 2) arithmetic on it should work as if the size of the object pointed | |
37 to has a size of 1. */ | |
486 | 38 #ifdef __STDC__ |
39 typedef void *POINTER; | |
40 #else | |
41 typedef char *POINTER; | |
42 #endif | |
43 | |
44 typedef unsigned long SIZE; | |
45 | |
46 #ifdef NULL | |
47 #undef NULL | |
48 #endif | |
49 #define NULL ((POINTER) 0) | |
50 | |
51 extern POINTER start_of_data (); | |
1592
613783a3f00c
* mem-limits.h [DATA_SEG_BITS] (EXCEEDS_LISP_PTR): Remember to
Jim Blandy <jimb@redhat.com>
parents:
1450
diff
changeset
|
52 #ifdef DATA_SEG_BITS |
613783a3f00c
* mem-limits.h [DATA_SEG_BITS] (EXCEEDS_LISP_PTR): Remember to
Jim Blandy <jimb@redhat.com>
parents:
1450
diff
changeset
|
53 #define EXCEEDS_LISP_PTR(ptr) \ |
613783a3f00c
* mem-limits.h [DATA_SEG_BITS] (EXCEEDS_LISP_PTR): Remember to
Jim Blandy <jimb@redhat.com>
parents:
1450
diff
changeset
|
54 (((unsigned int) (ptr) & ~DATA_SEG_BITS) >> VALBITS) |
613783a3f00c
* mem-limits.h [DATA_SEG_BITS] (EXCEEDS_LISP_PTR): Remember to
Jim Blandy <jimb@redhat.com>
parents:
1450
diff
changeset
|
55 #else |
1393
d2ae5897e43c
[!emacs]: Don't define POINTER, SIZE or NULL.
Richard M. Stallman <rms@gnu.org>
parents:
734
diff
changeset
|
56 #define EXCEEDS_LISP_PTR(ptr) ((unsigned int) (ptr) >> VALBITS) |
1592
613783a3f00c
* mem-limits.h [DATA_SEG_BITS] (EXCEEDS_LISP_PTR): Remember to
Jim Blandy <jimb@redhat.com>
parents:
1450
diff
changeset
|
57 #endif |
486 | 58 |
59 #ifdef BSD | |
60 #ifndef DATA_SEG_BITS | |
734 | 61 extern char etext; |
486 | 62 #define start_of_data() &etext |
63 #endif | |
64 #endif | |
65 | |
66 #else /* Not emacs */ | |
734 | 67 extern char etext; |
486 | 68 #define start_of_data() &etext |
69 #endif /* Not emacs */ | |
70 | |
71 | |
72 | |
73 /* start of data space; can be changed by calling malloc_init */ | |
74 static POINTER data_space_start; | |
75 | |
76 /* Number of bytes of writable memory we can expect to be able to get */ | |
77 static unsigned int lim_data; | |
78 | |
79 #ifdef USG | |
80 | |
1450
a321ed0fa3ae
(get_lim_data): Make it static.
Richard M. Stallman <rms@gnu.org>
parents:
1399
diff
changeset
|
81 static void |
486 | 82 get_lim_data () |
83 { | |
84 extern long ulimit (); | |
2917
725698689fbd
Some more changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
1592
diff
changeset
|
85 |
725698689fbd
Some more changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
1592
diff
changeset
|
86 lim_data = -1; |
725698689fbd
Some more changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
1592
diff
changeset
|
87 |
725698689fbd
Some more changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
1592
diff
changeset
|
88 /* Use the ulimit call, if we seem to have it. */ |
725698689fbd
Some more changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
1592
diff
changeset
|
89 #if !defined (ULIMIT_BREAK_VALUE) || defined (LINUX) |
725698689fbd
Some more changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
1592
diff
changeset
|
90 lim_data = ulimit (3, 0); |
725698689fbd
Some more changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
1592
diff
changeset
|
91 #endif |
725698689fbd
Some more changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
1592
diff
changeset
|
92 |
725698689fbd
Some more changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
1592
diff
changeset
|
93 /* If that didn't work, just use the macro's value. */ |
486 | 94 #ifdef ULIMIT_BREAK_VALUE |
2917
725698689fbd
Some more changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
1592
diff
changeset
|
95 if (lim_data == -1) |
725698689fbd
Some more changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
1592
diff
changeset
|
96 lim_data = ULIMIT_BREAK_VALUE; |
486 | 97 #endif |
98 | |
99 lim_data -= (long) data_space_start; | |
100 } | |
101 | |
102 #else /* not USG */ | |
3055 | 103 #if !defined(BSD4_2) && !defined(__osf__) |
486 | 104 |
1450
a321ed0fa3ae
(get_lim_data): Make it static.
Richard M. Stallman <rms@gnu.org>
parents:
1399
diff
changeset
|
105 static void |
486 | 106 get_lim_data () |
107 { | |
108 lim_data = vlimit (LIM_DATA, -1); | |
109 } | |
110 | |
111 #else /* BSD4_2 */ | |
112 | |
1450
a321ed0fa3ae
(get_lim_data): Make it static.
Richard M. Stallman <rms@gnu.org>
parents:
1399
diff
changeset
|
113 static void |
486 | 114 get_lim_data () |
115 { | |
116 struct rlimit XXrlimit; | |
117 | |
118 getrlimit (RLIMIT_DATA, &XXrlimit); | |
119 #ifdef RLIM_INFINITY | |
120 lim_data = XXrlimit.rlim_cur & RLIM_INFINITY; /* soft limit */ | |
121 #else | |
122 lim_data = XXrlimit.rlim_cur; /* soft limit */ | |
123 #endif | |
124 } | |
125 #endif /* BSD4_2 */ | |
126 #endif /* not USG */ |