Mercurial > hg > xemacs-beta
annotate src/emacs.c @ 5170:5ddbab03b0e6
various fixes to memory-usage stats
-------------------- ChangeLog entries follow: --------------------
lisp/ChangeLog addition:
2010-03-25 Ben Wing <ben@xemacs.org>
* diagnose.el (show-memory-usage):
* diagnose.el (show-object-memory-usage-stats):
Further changes to correspond with changes in the C code;
add an additional column in show-object-memory-usage-stats showing
the ancillary Lisp overhead used with each type; shrink columns for
windows in show-memory-usage to get it to fit in 79 chars.
src/ChangeLog addition:
2010-03-25 Ben Wing <ben@xemacs.org>
* alloc.c:
* alloc.c (struct):
* alloc.c (finish_object_memory_usage_stats):
* alloc.c (object_memory_usage_stats):
* alloc.c (Fobject_memory_usage):
* alloc.c (lisp_object_memory_usage_full):
* alloc.c (compute_memusage_stats_length):
* lrecord.h:
* lrecord.h (struct lrecord_implementation):
Add fields to the `lrecord_implementation' structure to list an
offset into the array of extra statistics in a
`struct generic_usage_stats' and a length, listing the first slice
of ancillary Lisp-object memory. Compute automatically in
compute_memusage_stats_length(). Use to add an entry
`FOO-lisp-ancillary-storage' for object type FOO.
Don't crash when an int or char is given to object-memory-usage,
signal an error instead.
Add functions lisp_object_memory_usage_full() and
lisp_object_memory_usage() to compute the total memory usage of an
object (sum of object, non-Lisp attached, and Lisp ancillary
memory).
* array.c:
* array.c (gap_array_memory_usage):
* array.h:
Add function to return memory usage of a gap array.
* buffer.c (struct buffer_stats):
* buffer.c (compute_buffer_usage):
* buffer.c (vars_of_buffer):
* extents.c (compute_buffer_extent_usage):
* marker.c:
* marker.c (compute_buffer_marker_usage):
* extents.h:
* lisp.h:
Remove `struct usage_stats' arg from compute_buffer_marker_usage()
and compute_buffer_extent_usage() -- these are ancillary Lisp
objects and don't get accumulated into `struct usage_stats';
change the value of `memusage_stats_list' so that `markers' and
`extents' memory is in Lisp-ancillary, where it belongs.
In compute_buffer_marker_usage(), use lisp_object_memory_usage()
rather than lisp_object_storage_size().
* casetab.c:
* casetab.c (case_table_memory_usage):
* casetab.c (vars_of_casetab):
* emacs.c (main_1):
Add memory usage stats for case tables.
* lisp.h:
Add comment explaining the `struct generic_usage_stats' more,
as well as the new fields in lrecord_implementation.
* console-impl.h:
* console-impl.h (struct console_methods):
* scrollbar-gtk.c:
* scrollbar-gtk.c (gtk_compute_scrollbar_instance_usage):
* scrollbar-msw.c:
* scrollbar-msw.c (mswindows_compute_scrollbar_instance_usage):
* scrollbar-x.c:
* scrollbar-x.c (x_compute_scrollbar_instance_usage):
* scrollbar.c:
* scrollbar.c (struct scrollbar_instance_stats):
* scrollbar.c (compute_all_scrollbar_instance_usage):
* scrollbar.c (scrollbar_instance_memory_usage):
* scrollbar.c (scrollbar_objects_create):
* scrollbar.c (vars_of_scrollbar):
* scrollbar.h:
* symsinit.h:
* window.c:
* window.c (find_window_mirror_maybe):
* window.c (struct window_mirror_stats):
* window.c (compute_window_mirror_usage):
* window.c (window_mirror_memory_usage):
* window.c (compute_window_usage):
* window.c (window_objects_create):
* window.c (syms_of_window):
* window.c (vars_of_window):
Redo memory-usage associated with windows, window mirrors, and
scrollbar instances. Should fix crash in find_window_mirror,
among other things. Properly assign memo ry to object memory,
non-Lisp extra memory, and Lisp ancillary memory. For example,
redisplay structures are non-Lisp memory hanging off a window
mirror, not a window; make it an ancillary Lisp-object field.
Window mirrors and scrollbar instances have their own statistics,
among other things.
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Thu, 25 Mar 2010 06:07:25 -0500 |
parents | 6c6d78781d59 |
children | 97eb4942aec8 14fda1dbdb26 |
rev | line source |
---|---|
428 | 1 /* XEmacs -- Fully extensible Emacs, running on Unix and other platforms. |
2 Copyright (C) 1985, 1986, 1987, 1992, 1993, 1994 | |
3 Free Software Foundation, Inc. | |
4 Copyright (C) 1995 Sun Microsystems, Inc. | |
5023
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
5 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2010 Ben Wing. |
428 | 6 |
7 This file is part of XEmacs. | |
8 | |
9 XEmacs is free software; you can redistribute it and/or modify it | |
10 under the terms of the GNU General Public License as published by the | |
11 Free Software Foundation; either version 2, or (at your option) any | |
12 later version. | |
13 | |
14 XEmacs is distributed in the hope that it will be useful, but WITHOUT | |
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
17 for more details. | |
18 | |
19 You should have received a copy of the GNU General Public License | |
20 along with XEmacs; see the file COPYING. If not, write to | |
4802
2fc0e2f18322
Don't create any bignums before pdumping. Add bignum, ratio, and bigfloat
Jerry James <james@xemacs.org>
parents:
4759
diff
changeset
|
21 the Free Software Foundation, Inc., 51 Franklin St - Fifth Floor, |
2fc0e2f18322
Don't create any bignums before pdumping. Add bignum, ratio, and bigfloat
Jerry James <james@xemacs.org>
parents:
4759
diff
changeset
|
22 Boston, MA 02111-1301, USA. */ |
428 | 23 |
24 /* Synched up with: Mule 2.0, FSF 19.28. */ | |
25 | |
2367 | 26 /* This file has been Mule-ized, Ben Wing, 10-7-04. */ |
27 | |
442 | 28 /* Capsule summary of the various releases of Lucid Emacs/XEmacs and |
771 | 29 FSF/GNU Emacs. (Copied from the Internals Manual, where the |
30 canonical version lives.) Provided here for use in cross-referencing | |
31 version releases and dates in comments, esp. in the authorship | |
32 comments at the beginning of each file. More information about | |
33 history can be found in the beginning of the Internals Manual and | |
34 in the About page. | |
442 | 35 |
36 | |
37 -- A time line for Lucid Emacs/XEmacs is | |
38 | |
2517 | 39 Version 19.0 shipped with Energize 1.0, April 1992. |
40 Version 19.1 released June 4, 1992. | |
41 Version 19.2 released June 19, 1992. | |
42 Version 19.3 released September 9, 1992. | |
43 Version 19.4 released January 21, 1993. | |
44 Version 19.5 released February 5, 1993. This was a repackaging of 19.4 with a | |
45 few bug fixes and shipped with Energize 2.0. It was a trade-show giveaway | |
46 and never released to the net. | |
47 Version 19.6 released April 9, 1993. | |
48 Version 19.7 was a repackaging of 19.6 with a few bug fixes and | |
442 | 49 shipped with Energize 2.1. Never released to the net. |
2517 | 50 Version 19.8 released September 6, 1993. (Epoch merger, preliminary I18N |
51 support) | |
52 Version 19.9 released January 12, 1994. (Scrollbars, Athena.) | |
53 Version 19.10 released May 27, 1994. Known as "Lucid Emacs" when | |
54 shipped by Lucid, and as "XEmacs" when shipped by Sun; but Lucid | |
55 went out of business a few days later and it's unclear very many | |
56 copies of 19.10 were released by Lucid. (Last release by Jamie Zawinski.) | |
57 Version 19.11 (first XEmacs) released September 13, 1994. | |
58 Version 19.12 released June 23, 1995. | |
59 Version 19.13 released September 1, 1995. | |
60 Version 19.14 released June 23, 1996. | |
61 Version 20.0 released February 9, 1997. | |
62 Version 19.15 released March 28, 1997. | |
63 Version 20.1 (not released to the net) April 15, 1997. | |
64 Version 20.2 released May 16, 1997. | |
65 Version 19.16 released October 31, 1997; retiring of v19 series. | |
66 Version 20.3 (the first stable version of XEmacs 20.x) released November 30, | |
67 1997. | |
68 Version 20.4 released February 28, 1998. (Jamie claims this version is the | |
69 "first reasonably stable release with MULE support" and says that "XEmacs | |
70 'core' and 'packages' now packaged separately.") | |
71 Version 21.0-pre5 released July 18, 1998. (Jamie says "Numbering scheme goes | |
72 wonky due to switch to stable + unstable branches.") | |
73 Version 21.0.60 released December 10, 1998. (The version naming scheme was | |
74 changed at this point: [a] the second version number is odd for stable | |
75 versions, even for beta versions; [b] a third version number is added, | |
76 replacing the "beta xxx" ending for beta versions and allowing for | |
77 periodic maintenance releases for stable versions. Therefore, 21.0 was | |
78 never "officially" released; similarly for 21.2, etc.) | |
79 Version 21.0.61 released January 4, 1999. | |
80 Version 21.0.63 released February 3, 1999. | |
81 Version 21.0.64 released March 1, 1999. | |
82 Version 21.0.65 released March 5, 1999. | |
83 Version 21.0.66 released March 12, 1999. | |
84 Version 21.0.67 released March 25, 1999. | |
85 Version 21.1.2 released May 14, 1999; on comp.emacs, May 28. (This is | |
788 | 86 the followup to 21.0.67. The second version number was bumped to indicate |
87 the beginning of the "stable" series.) | |
2517 | 88 Version 21.1.3 released June 26, 1999. |
89 Version 21.1.4 released July 8, 1999. | |
90 Version 21.1.6 released August 14, 1999. (There was no 21.1.5.) | |
91 Version 21.1.7 released September 26, 1999. | |
92 Version 21.1.8 released November 2, 1999. | |
93 Version 21.1.9 released February 13, 2000. | |
94 Version 21.1.10 released May 7, 2000. | |
95 Version 21.1.10a released June 24, 2000. | |
96 Version 21.1.11 released July 18, 2000. | |
97 Version 21.1.12 released August 5, 2000. | |
98 Version 21.1.13 released January 7, 2001. | |
99 Version 21.1.14 released January 27, 2001. | |
100 Version 21.2.9 released February 3, 1999. | |
101 Version 21.2.10 released February 5, 1999. | |
102 Version 21.2.11 released March 1, 1999. | |
103 Version 21.2.12 released March 5, 1999. | |
104 Version 21.2.13 released March 12, 1999. | |
105 Version 21.2.14 released May 14, 1999. | |
106 Version 21.2.15 released June 4, 1999. | |
107 Version 21.2.16 released June 11, 1999. | |
108 Version 21.2.17 released June 22, 1999. | |
109 Version 21.2.18 released July 14, 1999. | |
110 Version 21.2.19 released July 30, 1999. | |
111 Version 21.2.20 released November 10, 1999. | |
112 Version 21.2.21 released November 28, 1999. | |
113 Version 21.2.22 released November 29, 1999. | |
114 Version 21.2.23 released December 7, 1999. | |
115 Version 21.2.24 released December 14, 1999. | |
116 Version 21.2.25 released December 24, 1999. | |
117 Version 21.2.26 released December 31, 1999. | |
118 Version 21.2.27 released January 18, 2000. | |
119 Version 21.2.28 released February 7, 2000. | |
120 Version 21.2.29 released February 16, 2000. | |
121 Version 21.2.30 released February 21, 2000. | |
122 Version 21.2.31 released February 23, 2000. | |
123 Version 21.2.32 released March 20, 2000. | |
124 Version 21.2.33 released May 1, 2000. | |
125 Version 21.2.34 released May 28, 2000. | |
126 Version 21.2.35 released July 19, 2000. | |
127 Version 21.2.36 released October 4, 2000. | |
128 Version 21.2.37 released November 14, 2000. | |
129 Version 21.2.38 released December 5, 2000. | |
130 Version 21.2.39 released December 31, 2000. | |
131 Version 21.2.40 released January 8, 2001. | |
132 Version 21.2.41 "Polyhymnia" released January 17, 2001. | |
133 Version 21.2.42 "Poseidon" released January 20, 2001. | |
134 Version 21.2.43 "Terspichore" released January 26, 2001. | |
135 Version 21.2.44 "Thalia" released February 8, 2001. | |
136 Version 21.2.45 "Thelxepeia" released February 23, 2001. | |
137 Version 21.2.46 "Urania" released March 21, 2001. | |
138 Version 21.2.47 "Zephir" released April 14, 2001. | |
139 Version 21.4.0 "Solid Vapor" released April 16, 2001. | |
140 Version 21.4.1 "Copyleft" released April 19, 2001. | |
141 Version 21.4.2 "Developer-Friendly Unix APIs" released May 10, 2001. | |
142 Version 21.4.3 "Academic Rigor" released May 17, 2001. | |
143 Version 21.4.4 "Artificial Intelligence" released July 28, 2001. | |
144 Version 21.4.5 "Civil Service" released October 23, 2001. | |
145 Version 21.4.6 "Common Lisp" released December 17, 2001. | |
146 Version 21.4.7 "Economic Science" released May 4, 2002. | |
147 Version 21.4.8 "Honest Recruiter" released May 9, 2002. | |
148 Version 21.4.9 "Informed Management" released August 23, 2002. | |
149 Version 21.4.10 "Military Intelligence" released November 2, 2002. | |
150 Version 21.4.11 "Native Windows TTY Support" released January 3, 2003. | |
151 Version 21.4.12 "Portable Code" released January 15, 2003. | |
152 Version 21.4.13 "Rational FORTRAN" released May 25, 2003. | |
153 Version 21.4.14 "Reasonable Discussion" released September 3, 2003. | |
154 Version 21.4.15 "Security Through Obscurity" released February 2, 2004. | |
155 Version 21.5.0 "alfalfa" released April 18, 2001. | |
156 Version 21.5.1 "anise" released May 9, 2001. | |
157 Version 21.5.2 "artichoke" released July 28, 2001. | |
158 Version 21.5.3 "asparagus" released September 7, 2001. | |
159 Version 21.5.4 "bamboo" released January 8, 2002. | |
160 Version 21.5.5 "beets" released March 5, 2002. | |
161 Version 21.5.6 "bok choi" released April 5, 2002. | |
162 Version 21.5.7 "broccoflower" released July 2, 2002. | |
163 Version 21.5.8 "broccoli" released July 27, 2002. | |
164 Version 21.5.9 "brussels sprouts" released August 30, 2002. | |
165 Version 21.5.10 "burdock" released January 4, 2003. | |
166 Version 21.5.11 "cabbage" released February 16, 2003. | |
167 Version 21.5.12 "carrot" released April 24, 2003. | |
168 Version 21.5.13 "cauliflower" released May 10, 2003. | |
169 Version 21.5.14 "cassava" released June 1, 2003. | |
170 Version 21.5.15 "celery" released September 3, 2003. | |
171 Version 21.5.16 "celeriac" released September 26, 2003. | |
172 Version 21.5.17 "chayote" released March 22, 2004. | |
173 Version 21.5.18 "chestnut" released October 22, 2004. | |
442 | 174 |
175 | |
176 -- A time line for GNU Emacs version 19 is | |
177 | |
178 version 19.7 (beta) (first beta release) released ??????; prob. late May 1993. | |
179 version 19.8 (beta) released May 27, 1993. | |
180 version 19.9 (beta) released May 27, 1993. | |
181 version 19.10 (beta) released May 30, 1993. | |
182 version 19.11 (beta) released June 1, 1993. | |
183 version 19.12 (beta) released June 2, 1993. | |
184 version 19.13 (beta) released June 8, 1993. | |
185 version 19.14 (beta) released June 17, 1993. | |
186 version 19.15 (beta) released June 19, 1993. | |
187 version 19.16 (beta) released July 6, 1993. | |
188 version 19.17 (beta) released late July, 1993. | |
189 version 19.18 (beta) released August 9, 1993. | |
190 version 19.19 (beta) released August 15, 1993. | |
191 version 19.20 (beta) released November 17, 1993. | |
192 version 19.21 (beta) released November 17, 1993. | |
193 version 19.22 (beta) released November 28, 1993. | |
788 | 194 version 19.23 (beta) released on comp.emacs, May 17, 1994. |
442 | 195 version 19.24 (beta) released May 16, 1994. |
196 version 19.25 (beta) released June 3, 1994. | |
197 version 19.26 (beta) released September 11, 1994. | |
198 version 19.27 (beta) released September 14, 1994. | |
199 version 19.28 (first ``official'' release) released November 1, 1994. | |
200 version 19.29 released June 21, 1995. | |
201 version 19.30 released November 24, 1995. | |
202 version 19.31 released May 25, 1996. | |
203 version 19.32 released July 31, 1996. | |
204 version 19.33 released August 11, 1996. | |
788 | 205 version 19.34 released August 21, 1996; on comp.emacs, August 22. |
442 | 206 version 19.34b released September 6, 1996. |
207 | |
208 | |
788 | 209 -- A time line for GNU Emacs versions 20 and 21 is |
442 | 210 |
211 version 20.1 released September 17, 1997. | |
212 version 20.2 released September 20, 1997. | |
213 version 20.3 released August 19, 1998. | |
788 | 214 version 20.4 released July 12, 1999; on comp.emacs, July 27. |
215 version 21.1 released October 20, 2001. | |
2517 | 216 Version 21.2 released March 16, 2002. |
217 Version 21.3 released March 19, 2003. | |
442 | 218 |
219 | |
220 -- A time line for GNU Emacs version 18 and older is | |
221 | |
222 GNU Emacs version 15 (15.34) was released sometime in 1984 or 1985 and | |
223 shared some code with a version of Emacs written by James Gosling (the | |
224 same James Gosling who later created the Java language). | |
225 GNU Emacs version 16 (first released version was 16.56) was released on | |
226 July 15, 1985. All Gosling code was removed due to potential copyright | |
227 problems with the code. | |
228 version 16.57: released on September 16, 1985. | |
229 versions 16.58, 16.59: released on September 17, 1985. | |
230 version 16.60: released on September 19, 1985. These later version 16's | |
231 incorporated patches from the net, esp. for getting Emacs to work under | |
232 System V. | |
233 version 17.36 (first official v17 release) released on December 20, 1985. | |
234 Included a TeX-able user manual. First official unpatched version that | |
235 worked on vanilla System V machines. | |
236 version 17.43 (second official v17 release) released on January 25, 1986. | |
237 version 17.45 released on January 30, 1986. | |
238 version 17.46 released on February 4, 1986. | |
239 version 17.48 released on February 10, 1986. | |
240 version 17.49 released on February 12, 1986. | |
241 version 17.55 released on March 18, 1986. | |
242 version 17.57 released on March 27, 1986. | |
243 version 17.58 released on April 4, 1986. | |
244 version 17.61 released on April 12, 1986. | |
245 version 17.63 released on May 7, 1986. | |
246 version 17.64 released on May 12, 1986. | |
247 version 18.24 (a beta version) released on October 2, 1986. | |
248 version 18.30 (a beta version) released on November 15, 1986. | |
249 version 18.31 (a beta version) released on November 23, 1986. | |
250 version 18.32 (a beta version) released on December 7, 1986. | |
251 version 18.33 (a beta version) released on December 12, 1986. | |
252 version 18.35 (a beta version) released on January 5, 1987. | |
253 version 18.36 (a beta version) released on January 21, 1987. | |
254 January 27, 1987: The Great Usenet Renaming. net.emacs is now comp.emacs. | |
255 version 18.37 (a beta version) released on February 12, 1987. | |
256 version 18.38 (a beta version) released on March 3, 1987. | |
257 version 18.39 (a beta version) released on March 14, 1987. | |
258 version 18.40 (a beta version) released on March 18, 1987. | |
259 version 18.41 (the first ``official'' release) released on March 22, 1987. | |
260 version 18.45 released on June 2, 1987. | |
261 version 18.46 released on June 9, 1987. | |
262 version 18.47 released on June 18, 1987. | |
263 version 18.48 released on September 3, 1987. | |
264 version 18.49 released on September 18, 1987. | |
265 version 18.50 released on February 13, 1988. | |
266 version 18.51 released on May 7, 1988. | |
267 version 18.52 released on September 1, 1988. | |
268 version 18.53 released on February 24, 1989. | |
269 version 18.54 released on April 26, 1989. | |
270 version 18.55 released on August 23, 1989. This is the earliest version | |
271 that is still available by FTP. | |
272 version 18.56 released on January 17, 1991. | |
273 version 18.57 released late January, 1991. | |
274 version 18.58 released ?????. | |
275 version 18.59 released October 31, 1992. | |
276 | |
2517 | 277 |
278 -- A time line for Epoch is | |
279 | |
280 Epoch 1.0 released December 14, 1989. (by Simon Kaplan, Chris Love, et al.) | |
281 Epoch 2.0 released December 23, 1989. | |
282 Epoch 3.1 released February 6, 1990. | |
283 Epoch 3.2 released December[????] 11, 1990. | |
284 Epoch 4.0 released August 27, 1990. | |
285 | |
442 | 286 */ |
854 | 287 |
2367 | 288 /* Sources for further information: |
289 | |
290 ----------------------------------- | |
291 1. Using XEmacs, Programming Elisp: | |
292 ----------------------------------- | |
293 | |
294 ;;; -- the XEmacs User's Manual (Access using the online Info browser: | |
295 ;;; Use `Help->Info (Online Docs)->XEmacs User's Manual' (if | |
296 ;;; there is such an entry); or get to the Info contents page | |
297 ;;; using `Help->Info Contents' or `C-h i', and then | |
298 ;;; *middle-click* the XEmacs link or move the cursor into the | |
299 ;;; link and hit ENTER. This manual contains a great deal of | |
300 ;;; documentation on customization: Scroll down to the | |
301 ;;; Customization link and select it in the same fashion as for | |
302 ;;; the XEmacs link just mentioned.) | |
303 | |
304 ;;; -- the XEmacs FAQ (`C-h F' for the local version; get either the | |
305 ;;; local version or the very latest version off the net using | |
306 ;;; the Help menu) | |
307 | |
308 ;;; -- the XEmacs Lisp Reference Manual, containing detailed | |
309 ;;; documentation on Elisp. (Access using Info, just like for the | |
310 ;;; XEmacs User's Manual.) | |
311 | |
312 ;;; -- the documentation strings for specific commands, functions, | |
313 ;;; key sequences, and variables. NOTE: This is *not* the same | |
314 ;;; information as in the XEmacs User's Manual or XEmacs Lisp | |
315 ;;; Reference Manual! In general, the doc strings are more | |
316 ;;; terse and more up-to-date than what is found in the manuals. | |
317 ;;; Once you understand the general concepts, these doc strings | |
318 ;;; should be your first point of reference for further | |
319 ;;; info. (Access using menu entries under `Help->Commands, | |
320 ;;; Variables, Keys' or using the keyboard: `C-h k' for a key | |
321 ;;; sequence, `C-h f' for a named command or Elisp function, | |
322 ;;; `C-h v' for a variable. There is various other useful | |
323 ;;; information accessible similarly, such as `C-h a' | |
324 ;;; ["Apropos", i.e. search for a command, function, or variable | |
325 ;;; by name]; `C-h C-a' ["Apropos Docs", i.e. search through the | |
326 ;;; text of the doc strings]; `C-h b' to list all key bindings; | |
327 ;;; `C-h m' to describe the current major and minor modes; etc. | |
328 ;;; Type `C-h ? ?' for a complete list.) | |
329 | |
330 ;;; -- Getting Started with XEmacs [aka the "New User's Guide"], a | |
331 ;;; more introductory manual than the XEmacs User's Manual. | |
332 ;;; (Access using Info, just like for the XEmacs User's Manual. | |
333 ;;; There are some sections on customization here.) | |
334 | |
335 ;;; -- the XEmacs tutorial, a very simple introduction to XEmacs for | |
336 ;;; total beginners. (`C-h t' for English; get the version in | |
337 ;;; various languages from the Help menu) | |
338 | |
339 ;;; -- the XEmacs web site, www.xemacs.org. | |
340 | |
341 ;;; -- the XEmacs mailing lists (xemacs-FOO@xemacs.org; | |
342 ;;; see http://www.xemacs.org/Lists/ for more info. Before | |
343 ;;; posting, consider looking through the archives -- they go back | |
344 ;;; years and there is a powerful searching interface. Currently | |
345 ;;; the archives are at http://list-archive.xemacs.org/, but if | |
346 ;;; this doesn't work, you can always access them through | |
347 ;;; www.xemacs.org.) | |
348 | |
349 ;;; -- the XEmacs newsgroup, comp.emacs.xemacs. This is | |
350 ;;; bi-directionally gatewayed with xemacs@xemacs.org. WARNING: | |
351 ;;; The developers do not normally hang out on this newsgroup. If | |
352 ;;; you need to contact them, use xemacs-beta@xemacs.org. | |
353 | |
354 ;;; -- the XEmacs internals manual, for those interested in working on | |
355 ;;; the XEmacs C code. (Available through Info.) | |
356 | |
357 ;;; -- `Help->About XEmacs' to find out who the maintainers are. | |
358 | |
359 --------------------- | |
360 2. Developing XEmacs: | |
361 --------------------- | |
362 | |
363 -- the internals manual, man/internals/internals.texi | |
364 | |
365 -- long comments at the head of certain files: | |
366 | |
367 emacs.c | |
368 extents.c | |
369 text.c | |
370 text.h | |
371 lisp.h | |
372 redisplay.h | |
373 dynarr.c | |
374 blocktype.c | |
375 eval.c | |
376 event-Xt.c (sort of) | |
377 event-stream.c (command event queue) | |
378 frame.c | |
379 intl-encap-win32.c | |
380 keymap.c | |
381 line-number.c (a little bit) | |
382 menubar-msw.c (sort of) | |
383 menubar-x.c (sort of) | |
384 mule-canna.c (sort of) | |
385 mule-ccl.c | |
386 mule-coding.c (scattered in the file) | |
387 mule-wnn.c (in japanese) | |
388 ntheap.c (near the top) | |
389 redisplay.c (various scattered) | |
390 regex.c (various scattered) | |
391 sysdep.c (maybe; wait_for_termination) | |
392 unexec.c | |
393 unicode.c | |
4917 | 394 gccache-x.c (a bit) |
2367 | 395 |
396 #### review .h files; write a perl program to look for long comments | |
397 throughout the files, ignoring stuff inside of DEFUN's. | |
398 | |
399 #### elsewhere? | |
400 | |
401 -- comments scattered throughout the sources (#### should be grouped | |
402 together if feasible). For example, lrecord.h (pdump and object- | |
403 creation), alloc.c (fixed-type allocation), etc. #### fill in. | |
404 | |
405 -- Ben's Architecting XEmacs web site. | |
406 (http://www.xemacs.org/Architecting-XEmacs/index.html; #### should be | |
407 integrated into the sources) | |
408 | |
409 -- Back discussions on xemacs-beta (#### The juiciest tidbits, esp. | |
410 those with specific proposals, should be extracted and stuck in | |
411 the source) | |
412 | |
413 -- README.* in the src/ directory (and maybe other directories) | |
414 | |
415 -- The ChangeLog files, sometimes. | |
416 | |
417 */ | |
418 | |
419 | |
420 | |
428 | 421 /* Note: It is necessary to specify <config.h> and not "config.h" in |
422 order for the --srcdir type of compilation to work properly. | |
423 Otherwise the config.h from the srcdir, rather than the one from | |
424 the build dir, will be used. */ | |
425 | |
426 #include <config.h> | |
427 #include "lisp.h" | |
428 | |
429 #include "backtrace.h" /* run-emacs-from-temacs needs this */ | |
430 #include "buffer.h" | |
431 #include "commands.h" | |
432 #include "console.h" | |
433 #include "process.h" | |
434 #include "redisplay.h" | |
438 | 435 #include "frame.h" |
428 | 436 #include "sysdep.h" |
437 | |
438 #include "systty.h" | |
439 #include "sysfile.h" | |
440 #include "systime.h" | |
771 | 441 #include "sysproc.h" /* for qxe_getpid() */ |
428 | 442 |
443 #ifdef QUANTIFY | |
444 #include <quantify.h> | |
445 #endif | |
446 | |
447 #ifdef HAVE_SHLIB | |
448 #include "sysdll.h" | |
449 #endif | |
450 | |
451 #ifdef TOOLTALK | |
442 | 452 #include TT_C_H_FILE |
428 | 453 #endif |
454 | |
1315 | 455 #ifdef WIN32_ANY |
872 | 456 #include "console-msw.h" |
428 | 457 #endif |
458 | |
2720 | 459 #ifdef DUMP_IN_EXEC |
2015 | 460 #ifndef WIN32_NATIVE |
461 #include "dump-data.h" | |
462 #endif | |
2720 | 463 #endif |
2015 | 464 |
428 | 465 /* For PATH_EXEC */ |
466 #include <paths.h> | |
467 | |
826 | 468 #if defined (HEAP_IN_DATA) && !defined (PDUMP) |
428 | 469 void report_sheap_usage (int die_if_pure_storage_exceeded); |
470 #endif | |
471 | |
472 #if !defined (SYSTEM_MALLOC) && !defined (DOUG_LEA_MALLOC) | |
473 extern void *(*__malloc_hook)(size_t); | |
474 extern void *(*__realloc_hook)(void *, size_t); | |
475 extern void (*__free_hook)(void *); | |
476 #endif /* not SYSTEM_MALLOC && not DOUG_LEA_MALLOC */ | |
477 | |
478 /* Command line args from shell, as list of strings */ | |
479 Lisp_Object Vcommand_line_args; | |
480 | |
481 /* Set nonzero after XEmacs has started up the first time. | |
482 Prevents reinitialization of the Lisp world and keymaps | |
483 on subsequent starts. */ | |
484 int initialized; | |
485 | |
486 #ifdef DOUG_LEA_MALLOC | |
487 # include <malloc.h> | |
488 /* Preserves a pointer to the memory allocated that copies that | |
489 static data inside glibc's malloc. */ | |
490 static void *malloc_state_ptr; | |
491 #endif /* DOUG_LEA_MALLOC */ | |
492 | |
493 # ifdef REL_ALLOC | |
494 void r_alloc_reinit (void); | |
495 # endif | |
496 | |
497 /* Variable whose value is symbol giving operating system type. */ | |
498 Lisp_Object Vsystem_type; | |
499 | |
500 /* Variable whose value is string giving configuration built for. */ | |
501 Lisp_Object Vsystem_configuration; | |
502 | |
503 /* Variable whose value is string containing the configuration options | |
504 XEmacs was built with. */ | |
505 Lisp_Object Vsystem_configuration_options; | |
506 | |
507 /* Version numbers and strings */ | |
508 Lisp_Object Vemacs_major_version; | |
509 Lisp_Object Vemacs_minor_version; | |
510 Lisp_Object Vemacs_patch_level; | |
511 Lisp_Object Vemacs_beta_version; | |
512 Lisp_Object Vxemacs_codename; | |
975 | 513 Lisp_Object Vxemacs_extra_name; |
2602 | 514 Lisp_Object Vxemacs_release_date; |
428 | 515 #ifdef INFODOCK |
516 Lisp_Object Vinfodock_major_version; | |
517 Lisp_Object Vinfodock_minor_version; | |
518 Lisp_Object Vinfodock_build_version; | |
519 #endif | |
520 | |
521 /* The path under which XEmacs was invoked. */ | |
522 Lisp_Object Vinvocation_path; | |
523 | |
524 /* The name under which XEmacs was invoked, with any leading directory | |
525 names discarded. */ | |
526 Lisp_Object Vinvocation_name; | |
527 | |
528 /* The directory name from which XEmacs was invoked. */ | |
529 Lisp_Object Vinvocation_directory; | |
530 | |
531 #if 0 /* FSFmacs */ | |
532 /* The directory name in which to find subdirs such as lisp and etc. | |
533 nil means get them only from PATH_LOADSEARCH. */ | |
534 Lisp_Object Vinstallation_directory; | |
535 #endif | |
536 | |
537 Lisp_Object Vemacs_program_name, Vemacs_program_version; | |
538 Lisp_Object Vexec_path; | |
539 Lisp_Object Vexec_directory, Vconfigure_exec_directory; | |
540 Lisp_Object Vlisp_directory, Vconfigure_lisp_directory; | |
460 | 541 Lisp_Object Vmule_lisp_directory, Vconfigure_mule_lisp_directory; |
428 | 542 Lisp_Object Vmodule_directory, Vconfigure_module_directory; |
543 Lisp_Object Vsite_module_directory, Vconfigure_site_module_directory; | |
544 Lisp_Object Vconfigure_package_path; | |
3179 | 545 Lisp_Object Vconfigure_early_package_directories; |
546 Lisp_Object Vconfigure_late_package_directories; | |
547 Lisp_Object Vconfigure_last_package_directories; | |
428 | 548 Lisp_Object Vdata_directory, Vconfigure_data_directory; |
549 Lisp_Object Vdoc_directory, Vconfigure_doc_directory; | |
550 Lisp_Object Vconfigure_lock_directory; | |
551 Lisp_Object Vdata_directory_list; | |
552 Lisp_Object Vconfigure_info_directory; | |
553 Lisp_Object Vsite_directory, Vconfigure_site_directory; | |
554 Lisp_Object Vconfigure_info_path; | |
555 Lisp_Object Vinternal_error_checking; | |
438 | 556 Lisp_Object Vmail_lock_methods, Vconfigure_mail_lock_method; |
428 | 557 |
558 /* The default base directory XEmacs is installed under. */ | |
559 Lisp_Object Vconfigure_exec_prefix_directory, Vconfigure_prefix_directory; | |
560 | |
561 /* If nonzero, set XEmacs to run at this priority. This is also used | |
562 in child_setup and sys_suspend to make sure subshells run at normal | |
563 priority. */ | |
458 | 564 Fixnum emacs_priority; |
428 | 565 |
442 | 566 /* Some FSF junk with running_asynch_code, to preserve the match |
567 data. Not necessary because we don't call process filters | |
568 asynchronously (i.e. from within QUIT). */ | |
428 | 569 |
570 /* If non-zero, a window-system was specified on the command line. */ | |
571 int display_arg; | |
572 | |
573 /* Type of display specified. We cannot use a Lisp symbol here because | |
574 Lisp symbols may not initialized at the time that we set this | |
575 variable. */ | |
2367 | 576 const Ascbyte *display_use; |
428 | 577 |
578 /* If non-zero, then the early error handler will only print the error | |
579 message and exit. */ | |
580 int suppress_early_error_handler_backtrace; | |
581 | |
582 /* An address near the bottom of the stack. | |
583 Tells GC how to save a copy of the stack. */ | |
2367 | 584 Rawbyte *stack_bottom; |
428 | 585 |
586 #ifdef USG_SHARED_LIBRARIES | |
587 /* If nonzero, this is the place to put the end of the writable segment | |
588 at startup. */ | |
589 | |
590 uintptr_t bss_end = 0; | |
591 #endif | |
592 | |
647 | 593 /* Number of bytes of writable memory we can expect to be able to get: |
594 Leave this as an unsigned int because it could potentially be 4G */ | |
2132 | 595 unsigned long lim_data; |
428 | 596 |
442 | 597 /* WARNING! |
598 | |
599 Some LISP-visible command-line options are set by XEmacs _before_ the | |
600 data is dumped in building a --pdump XEmacs, but used _after_ it is | |
446 | 601 restored in normal operation. Thus the dump-time values overwrite the |
602 values XEmacs is getting at runtime. Such variables must be saved | |
442 | 603 before loading the dumpfile, and restored afterward. |
604 | |
446 | 605 Therefore these variables may not be initialized in vars_of_emacs(). |
606 | |
607 The save/restore is done immediately before and after pdump_load() in | |
608 main_1(). See that function for the current list of protected variables. | |
609 | |
610 Note that saving/restoring is only necessary for a few variables that are | |
611 o command line arguments effective at runtime (as opposed to dump-time), | |
612 o parsed before pdump_load, and | |
613 o exported to Lisp via a DEFVAR. | |
442 | 614 */ |
615 | |
428 | 616 /* Nonzero means running XEmacs without interactive terminal. */ |
617 | |
618 int noninteractive; | |
619 | |
620 /* Value of Lisp variable `noninteractive'. | |
621 Normally same as C variable `noninteractive' | |
442 | 622 but nothing terrible happens if user sets this one. |
623 | |
624 Shadowed from the pdumper by `noninteractive'. */ | |
428 | 625 |
626 int noninteractive1; | |
627 | |
628 /* Nonzero means don't perform site-lisp searches at startup */ | |
629 int inhibit_site_lisp; | |
630 | |
631 /* Nonzero means don't perform site-modules searches at startup */ | |
632 int inhibit_site_modules; | |
633 | |
776 | 634 /* Nonzero means don't load user-init or site-start file */ |
635 int vanilla_inhibiting; | |
636 | |
428 | 637 /* Nonzero means don't respect early packages at startup */ |
638 int inhibit_early_packages; | |
639 | |
776 | 640 /* Nonzero means don't respect any packages at startup -- act as if they |
641 don't exist. */ | |
642 int inhibit_all_packages; | |
643 | |
428 | 644 /* Nonzero means don't load package autoloads at startup */ |
645 int inhibit_autoloads; | |
646 | |
442 | 647 /* Nonzero means don't load the dump file (ignored if not PDUMP) */ |
648 | |
649 int nodumpfile; | |
650 | |
428 | 651 /* Nonzero means print debug information about path searching */ |
652 int debug_paths; | |
653 | |
654 /* Save argv and argc. */ | |
2367 | 655 static Wexttext **initial_argv; /* #### currently unused */ |
444 | 656 static int initial_argc; /* #### currently unused */ |
428 | 657 |
2367 | 658 static void sort_args (int argc, Wexttext **argv); |
428 | 659 |
660 Lisp_Object Qkill_emacs_hook; | |
661 Lisp_Object Qsave_buffers_kill_emacs; | |
662 | |
1315 | 663 Lisp_Object Qtemacs, Qdumping, Qrestarted, Qpdump, Qbatch; |
664 | |
442 | 665 /* Nonzero if handling a fatal error already. */ |
666 int fatal_error_in_progress; | |
667 | |
771 | 668 /* Nonzero means we're going down, so we better not run any hooks |
442 | 669 or do other non-essential stuff. */ |
670 int preparing_for_armageddon; | |
671 | |
771 | 672 /* Nonzero means we're in an unstable situation and need to skip |
5014
c2e0c3af5fe3
cleanups to debug-print, try harder to make it work during GC
Ben Wing <ben@xemacs.org>
parents:
5000
diff
changeset
|
673 internal->external conversions, QUIT checking and such. This gets set |
c2e0c3af5fe3
cleanups to debug-print, try harder to make it work during GC
Ben Wing <ben@xemacs.org>
parents:
5000
diff
changeset
|
674 during early startup, during shutdown, and when debug printing |
c2e0c3af5fe3
cleanups to debug-print, try harder to make it work during GC
Ben Wing <ben@xemacs.org>
parents:
5000
diff
changeset
|
675 (i.e. called from a debugger such as gdb to print Lisp objects or |
c2e0c3af5fe3
cleanups to debug-print, try harder to make it work during GC
Ben Wing <ben@xemacs.org>
parents:
5000
diff
changeset
|
676 backtraces). During printing we check for this, and during conversion |
c2e0c3af5fe3
cleanups to debug-print, try harder to make it work during GC
Ben Wing <ben@xemacs.org>
parents:
5000
diff
changeset
|
677 we abort if we see this. */ |
2367 | 678 int inhibit_non_essential_conversion_operations; |
442 | 679 |
680 static JMP_BUF run_temacs_catch; | |
681 | |
682 static int run_temacs_argc; | |
2367 | 683 static Wexttext **run_temacs_argv; |
442 | 684 |
685 #ifdef _MSC_VER | |
771 | 686 static DWORD mswindows_handle_hardware_exceptions (DWORD code); |
687 #endif | |
442 | 688 |
826 | 689 #ifdef WIN32_NATIVE |
690 static DWORD CALLBACK wait_for_termination_signal (LPVOID handle); | |
691 #endif | |
692 | |
442 | 693 |
771 | 694 /************************************************************************/ |
695 /* Functions to handle arguments */ | |
696 /************************************************************************/ | |
697 | |
428 | 698 /* Code for dealing with Lisp access to the Unix command line */ |
699 | |
700 static Lisp_Object | |
2367 | 701 make_arg_list_1 (int argc, Wexttext **argv, int skip_args) |
428 | 702 { |
703 Lisp_Object result = Qnil; | |
704 REGISTER int i; | |
705 | |
706 for (i = argc - 1; i >= 0; i--) | |
707 { | |
708 if (i == 0 || i > skip_args) | |
709 { | |
442 | 710 #ifdef WIN32_NATIVE |
428 | 711 if (i == 0) |
712 { | |
713 /* Do not trust to what crt0 has stuffed into argv[0] */ | |
814 | 714 Extbyte *full_exe_path; |
442 | 715 Lisp_Object fullpath; |
716 | |
814 | 717 full_exe_path = mswindows_get_module_file_name (); |
718 assert (full_exe_path); | |
771 | 719 fullpath = build_tstr_string (full_exe_path); |
4976
16112448d484
Rename xfree(FOO, TYPE) -> xfree(FOO)
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
720 xfree (full_exe_path); |
442 | 721 result = Fcons (fullpath, result); |
428 | 722 } |
723 else | |
724 #endif | |
2367 | 725 result = Fcons (build_wext_string (argv[i], |
726 Qcommand_argument_encoding), | |
440 | 727 result); |
428 | 728 } |
729 } | |
730 return result; | |
731 } | |
732 | |
733 Lisp_Object | |
2367 | 734 make_arg_list (int argc, Wexttext **argv) |
428 | 735 { |
736 return make_arg_list_1 (argc, argv, 0); | |
737 } | |
738 | |
739 /* Calling functions are also responsible for calling free_argc_argv | |
740 when they are done with the generated list. */ | |
741 void | |
2367 | 742 make_argc_argv (Lisp_Object argv_list, int *argc, Wexttext ***argv) |
428 | 743 { |
744 Lisp_Object next; | |
745 int n = XINT (Flength (argv_list)); | |
746 REGISTER int i; | |
2367 | 747 *argv = xnew_array (Wexttext *, n + 1); |
428 | 748 |
749 for (i = 0, next = argv_list; i < n; i++, next = XCDR (next)) | |
750 { | |
751 CHECK_STRING (XCAR (next)); | |
752 | |
5000
44d7bde26046
fix compile errors, fix revert-buffer bug on binary/Latin 1 files, Mule-ize some files
Ben Wing <ben@xemacs.org>
parents:
4982
diff
changeset
|
753 (*argv)[i] = |
44d7bde26046
fix compile errors, fix revert-buffer bug on binary/Latin 1 files, Mule-ize some files
Ben Wing <ben@xemacs.org>
parents:
4982
diff
changeset
|
754 (Wexttext *) LISP_STRING_TO_EXTERNAL_MALLOC |
44d7bde26046
fix compile errors, fix revert-buffer bug on binary/Latin 1 files, Mule-ize some files
Ben Wing <ben@xemacs.org>
parents:
4982
diff
changeset
|
755 (XCAR (next), Qcommand_argument_encoding); |
428 | 756 } |
757 (*argv) [n] = 0; | |
758 *argc = i; | |
759 } | |
760 | |
761 void | |
2367 | 762 free_argc_argv (Wexttext **argv) |
428 | 763 { |
764 int elt = 0; | |
765 | |
766 while (argv[elt]) | |
767 { | |
4976
16112448d484
Rename xfree(FOO, TYPE) -> xfree(FOO)
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
768 xfree (argv[elt]); |
5169
6c6d78781d59
cleanup of code related to xfree(), better KKCC backtrace capabilities, document XD_INLINE_LISP_OBJECT_BLOCK_PTR, fix some memory leaks, other code cleanup
Ben Wing <ben@xemacs.org>
parents:
5168
diff
changeset
|
769 argv[elt] = 0; |
428 | 770 elt++; |
771 } | |
4976
16112448d484
Rename xfree(FOO, TYPE) -> xfree(FOO)
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
772 xfree (argv); |
428 | 773 } |
774 | |
775 static void | |
2367 | 776 init_cmdargs (int argc, Wexttext **argv, int skip_args) |
428 | 777 { |
778 initial_argv = argv; | |
779 initial_argc = argc; | |
780 | |
781 Vcommand_line_args = make_arg_list_1 (argc, argv, skip_args); | |
782 } | |
783 | |
784 DEFUN ("invocation-name", Finvocation_name, 0, 0, 0, /* | |
785 Return the program name that was used to run XEmacs. | |
786 Any directory names are omitted. | |
787 */ | |
788 ()) | |
789 { | |
790 return Fcopy_sequence (Vinvocation_name); | |
791 } | |
792 | |
793 DEFUN ("invocation-directory", Finvocation_directory, 0, 0, 0, /* | |
794 Return the directory name in which the Emacs executable was located. | |
795 */ | |
796 ()) | |
797 { | |
798 return Fcopy_sequence (Vinvocation_directory); | |
799 } | |
800 | |
801 | |
802 | |
776 | 803 /* Test whether the next argument in ARGV matches SSTR or a prefix of LSTR |
804 (at least MINLEN characters; if MINLEN is 0, set to size of LSTR). If | |
805 so, then if VALPTR is non-null (the argument is supposed to have a | |
806 value) store in *VALPTR either the next argument or the portion of this | |
807 one after the equal sign. ARGV is read starting at position *SKIPPTR; | |
808 this index is advanced by the number of arguments used. | |
428 | 809 |
810 Too bad we can't just use getopt for all of this, but we don't have | |
811 enough information to do it right. */ | |
812 | |
813 static int | |
4528
726060ee587c
First draft of g++ 4.3 warning removal patch. Builds. *Needs ChangeLogs.*
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4522
diff
changeset
|
814 argmatch (Wexttext **argv, int argc, const Ascbyte *sstr, const Ascbyte *lstr, |
2367 | 815 int minlen, Wexttext **valptr, int *skipptr) |
428 | 816 { |
2367 | 817 Wexttext *p = NULL; |
818 Charcount arglen; | |
819 Wexttext *arg; | |
428 | 820 |
821 /* Don't access argv[argc]; give up in advance. */ | |
822 if (argc <= *skipptr + 1) | |
823 return 0; | |
824 | |
825 arg = argv[*skipptr+1]; | |
826 if (arg == NULL) | |
827 return 0; | |
2367 | 828 if (wext_strcmp_ascii (arg, sstr) == 0) |
428 | 829 { |
830 if (valptr != NULL) | |
831 { | |
832 *valptr = argv[*skipptr+2]; | |
833 *skipptr += 2; | |
834 } | |
835 else | |
836 *skipptr += 1; | |
837 return 1; | |
838 } | |
2367 | 839 arglen = (valptr != NULL && (p = wext_strchr (arg, '=')) != NULL |
840 ? p - arg : (Charcount) wext_strlen (arg)); | |
776 | 841 if (lstr && !minlen) |
842 minlen = strlen (lstr); | |
2367 | 843 if (lstr == 0 || arglen < minlen || |
844 wext_strncmp_ascii (arg, lstr, arglen) != 0) | |
428 | 845 return 0; |
846 else if (valptr == NULL) | |
847 { | |
848 *skipptr += 1; | |
849 return 1; | |
850 } | |
851 else if (p != NULL) | |
852 { | |
2367 | 853 *valptr = p + 1; |
428 | 854 *skipptr += 1; |
855 return 1; | |
856 } | |
2367 | 857 else if (argv[*skipptr + 2] != NULL) |
428 | 858 { |
2367 | 859 *valptr = argv[*skipptr + 2]; |
428 | 860 *skipptr += 2; |
861 return 1; | |
862 } | |
863 else | |
864 { | |
865 return 0; | |
866 } | |
867 } | |
868 | |
1315 | 869 static void |
4528
726060ee587c
First draft of g++ 4.3 warning removal patch. Builds. *Needs ChangeLogs.*
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4522
diff
changeset
|
870 check_compatible_window_system (const Ascbyte *must) |
1315 | 871 { |
872 if (display_use && strcmp (display_use, must)) | |
873 fatal ("Incompatible window system type `%s': `%s' already specified", | |
874 must, display_use); | |
875 display_use = must; | |
876 } | |
877 | |
771 | 878 |
879 /************************************************************************/ | |
880 /* main and friends: XEmacs startup */ | |
881 /************************************************************************/ | |
882 | |
428 | 883 /* Make stack traces always identify version + configuration */ |
884 #define main_1 STACK_TRACE_EYE_CATCHER | |
885 | |
886 /* This function is not static, so that the compiler is less likely to | |
446 | 887 inline it, which would make it not show up in stack traces. |
888 | |
889 The restart argument is a flag that indicates that main_1 is now | |
771 | 890 being called for the second time in this invocation of xemacs; this |
891 happens as a result of using `run-temacs' in the command line, when | |
892 invoking a bare (without dumped data) XEmacs (i.e. `temacs' with | |
893 the conventional dumper or `xemacs -nd' with the pdumper). See | |
446 | 894 Frun_emacs_from_temacs(). |
895 */ | |
2367 | 896 DECLARE_DOESNT_RETURN (main_1 (int, Wexttext **, Wexttext **, int)); |
428 | 897 DOESNT_RETURN |
2367 | 898 main_1 (int argc, Wexttext **argv, Wexttext **UNUSED (envp), int restart) |
428 | 899 { |
2367 | 900 Rawbyte stack_bottom_variable; |
428 | 901 int skip_args = 0; |
902 Lisp_Object load_me; | |
903 | |
904 #if (!defined (SYSTEM_MALLOC) && !defined (HAVE_LIBMCHECK) \ | |
905 && !defined (DOUG_LEA_MALLOC)) | |
906 /* Make sure that any libraries we link against haven't installed a | |
907 hook for a gmalloc of a potentially incompatible version. */ | |
908 /* If we're using libmcheck, the hooks have already been initialized, */ | |
909 /* don't touch them. -slb */ | |
910 __malloc_hook = NULL; | |
911 __realloc_hook = NULL; | |
912 __free_hook = NULL; | |
913 #endif /* not SYSTEM_MALLOC or HAVE_LIBMCHECK or DOUG_LEA_MALLOC */ | |
914 | |
915 noninteractive = 0; | |
3360 | 916 display_use = NULL; |
2367 | 917 inhibit_non_essential_conversion_operations = 1; |
428 | 918 |
3263 | 919 #ifdef NEW_GC |
2720 | 920 #ifndef PDUMP |
921 if (!initialized) | |
922 #endif | |
923 { | |
2723 | 924 if (!restart) |
925 { | |
926 init_mc_allocator (); | |
2994 | 927 #ifdef ALLOC_TYPE_STATS |
2723 | 928 init_lrecord_stats (); |
2994 | 929 #endif /* ALLOC_TYPE_STATS */ |
2723 | 930 } |
2720 | 931 } |
3263 | 932 #endif /* NEW_GC */ |
2720 | 933 |
1303 | 934 #if defined (LOSING_GCC_DESTRUCTOR_FREE_BUG) |
428 | 935 /* Prior to XEmacs 21, this was `#if 0'ed out. */ |
936 /* I'm enabling this because it is the only reliable way I've found to */ | |
1303 | 937 /* prevent a very annoying problem where GCC will attempt to free (3) */ |
428 | 938 /* memory at exit() and cause a coredump. */ |
939 init_free_hook (); | |
940 #endif | |
941 | |
4448
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
942 #define SHEBANG_PROGNAME_LENGTH \ |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
943 (int)((sizeof (WEXTSTRING (SHEBANG_PROGNAME)) - sizeof (WEXTSTRING ("")))) |
4932 | 944 #define SHEBANG_EXE_PROGNAME_LENGTH \ |
4973 | 945 (int)(sizeof (WEXTSTRING (SHEBANG_PROGNAME) WEXTSTRING (".exe")) \ |
4448
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
946 - sizeof (WEXTSTRING (""))) |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
947 |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
948 { |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
949 int progname_len = wext_strlen (argv[0]); |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
950 if (progname_len >= SHEBANG_PROGNAME_LENGTH) |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
951 { |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
952 if (!wext_strcmp_ascii (argv[0] + |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
953 (progname_len - SHEBANG_PROGNAME_LENGTH), |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
954 SHEBANG_PROGNAME) |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
955 /* Allow trailing .exe. Don't check it, it could also be |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
956 .com. */ |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
957 || (progname_len >= SHEBANG_EXE_PROGNAME_LENGTH && |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
958 !wext_strncmp_ascii |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
959 (argv[0] + (progname_len - SHEBANG_EXE_PROGNAME_LENGTH), |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
960 SHEBANG_PROGNAME, |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
961 SHEBANG_PROGNAME_LENGTH))) |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
962 { |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
963 Wexttext **newarr = alloca_array (Wexttext *, argc + 2); |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
964 int j; |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
965 |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
966 newarr[0] = argv[0]; |
4932 | 967 newarr[1] = (Wexttext *) WEXTSTRING ("--script"); |
4448
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
968 for (j = 1; j < argc; ++j) |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
969 { |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
970 newarr[j + 1] = argv[j]; |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
971 } |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
972 argv = newarr; |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
973 argc++; |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
974 } |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
975 } |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
976 } |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
977 |
428 | 978 sort_args (argc, argv); |
979 | |
2367 | 980 #if 0 /* defined (_SCO_DS) |
981 #### Turn this off, we already have another SCO_DS hack in main(). | |
982 */ | |
428 | 983 environ = envp; |
984 #endif | |
985 | |
986 /* Record (approximately) where the stack begins. */ | |
987 stack_bottom = &stack_bottom_variable; | |
988 | |
989 #ifdef USG_SHARED_LIBRARIES | |
990 if (bss_end) | |
991 brk ((void *) bss_end); | |
992 #endif | |
993 | |
994 clearerr (stdin); | |
995 | |
996 #if defined (HAVE_MMAP) && defined (REL_ALLOC) | |
997 /* ralloc can only be used if using the GNU memory allocator. */ | |
998 init_ralloc (); | |
1303 | 999 #elif defined (REL_ALLOC) && !defined (DOUG_LEA_MALLOC) |
428 | 1000 if (initialized) |
1303 | 1001 init_ralloc (); |
428 | 1002 #endif |
1003 | |
1004 #ifdef HAVE_SOCKS | |
1005 if (initialized) | |
1006 SOCKSinit (argv[0]); | |
1007 #endif /* HAVE_SOCKS */ | |
1008 | |
1009 #ifndef SYSTEM_MALLOC | |
1010 if (!initialized) | |
1011 /* Arrange to get warning messages as memory fills up. */ | |
1012 memory_warnings (0, malloc_warning); | |
1013 #endif /* not SYSTEM_MALLOC */ | |
1014 | |
1015 #ifdef SET_EMACS_PRIORITY | |
1016 if (emacs_priority != 0) | |
1017 nice (-emacs_priority); | |
1018 setuid (getuid ()); | |
1019 #endif /* SET_EMACS_PRIORITY */ | |
1020 | |
776 | 1021 /* NOTE NOTE NOTE: Keep the following args in sync with the big list of |
1022 arguments below in standard_args[], with the help text in startup.el, | |
1023 and with the list of non-clobbered variables near where pdump_load() | |
1024 is called! */ | |
854 | 1025 |
776 | 1026 /* Handle the -sd/--show-dump-id switch, which means show the hex dump_id |
1027 and quit */ | |
1028 if (argmatch (argv, argc, "-sd", "--show-dump-id", 0, NULL, &skip_args)) | |
442 | 1029 { |
1030 #ifdef PDUMP | |
1031 printf ("%08x\n", dump_id); | |
1032 #else | |
446 | 1033 printf ("Portable dumper not configured; -sd just forces exit.\n"); |
442 | 1034 #endif |
1035 exit (0); | |
1036 } | |
854 | 1037 |
2015 | 1038 /* Handle the -si/--show-inline-info switch, which means show the |
1039 alignment and max size of the inline data and quit */ | |
1040 if (argmatch (argv, argc, "-si", "--show-inline-info", 0, NULL, &skip_args)) | |
1041 { | |
2720 | 1042 #if defined (PDUMP) && defined (DUMP_IN_EXEC) && !defined (WIN32_NATIVE) |
3094 | 1043 /* #### We really should check for sizeof (size_t) > sizeof (long) */ |
1044 printf ("%lu %lu\n", (unsigned long) dumped_data_max_size (), | |
1045 (unsigned long) dumped_data_align_offset ()); | |
1046 | |
2015 | 1047 #else |
2720 | 1048 printf ("Portable dumper not configured for dumping into executable or windows native; -si just forces exit.\n"); |
2015 | 1049 #endif |
1050 exit (0); | |
1051 } | |
1052 | |
776 | 1053 /* Handle the --no-dump-file/-nd switch, which means don't load the dump |
1054 file (ignored when not using pdump) */ | |
1055 if (argmatch (argv, argc, "-nd", "--no-dump-file", 0, NULL, &skip_args)) | |
1056 nodumpfile = 1; | |
442 | 1057 |
428 | 1058 /* Handle the -batch switch, which means don't do interactive display. */ |
776 | 1059 if (argmatch (argv, argc, "-batch", "--batch", 0, NULL, &skip_args)) |
428 | 1060 { |
1061 #if 0 /* I don't think this is correct. */ | |
1062 inhibit_autoloads = 1; | |
1063 #endif | |
1064 noninteractive = 1; | |
1065 } | |
1066 | |
4448
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
1067 { |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
1068 int count_before = skip_args; |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
1069 /* Handle the -script switch, which implies batch and vanilla. The -l |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
1070 part of its functionality is implemented in Lisp. */ |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
1071 if (argmatch (argv, argc, "-script", "--script", 0, NULL, |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
1072 &skip_args)) |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
1073 { |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
1074 noninteractive = 1; |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
1075 vanilla_inhibiting = 1; |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
1076 } |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
1077 |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
1078 /* Don't actually discard this argument. */ |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
1079 skip_args = count_before; |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
1080 } |
771 | 1081 #ifdef WIN32_NATIVE |
826 | 1082 { |
1083 /* Since we aren't a console application, we can't easily be terminated | |
1084 using ^C. (We aren't a console application to avoid Windows from | |
1085 automatically and unwantedly creating a console window for us. If | |
1086 only the Windows designers had some sense in them and didn't create | |
1087 this artificial console/non-console distinction!) Therefore, we set | |
1088 up a communication path with i.exe so that when a ^C is sent to it | |
1089 (using GenerateConsoleCtrlEvent), it in turn signals us to commit | |
1090 suicide. (This is cleaner than using TerminateProcess()). This | |
1091 makes (e.g.) the "Stop Build" command from VC++ correctly terminate | |
1092 XEmacs. */ | |
854 | 1093 |
2367 | 1094 Wexttext *heventstr; |
826 | 1095 if (argmatch (argv, argc, "-mswindows-termination-handle", 0, 0, |
1096 &heventstr, &skip_args)) | |
1097 { | |
2367 | 1098 HANDLE hevent = (HANDLE) wext_atol (heventstr); |
826 | 1099 DWORD unused; |
1100 HANDLE h_thread = CreateThread (NULL, 0, wait_for_termination_signal, | |
1101 (void *) hevent, 0, &unused); | |
1102 CloseHandle (h_thread); | |
1103 } | |
1104 } | |
1105 | |
771 | 1106 /* Handle the -nuni switch, which forces XEmacs to use the ANSI |
1107 versions of Unicode-split API's even on Windows NT, which has | |
1108 full Unicode support. This helps flush out problems in the code | |
1109 we've written to convert between ANSI and Unicode. */ | |
776 | 1110 if (argmatch (argv, argc, "-nuni", "--no-unicode-lib-calls", 0, NULL, |
771 | 1111 &skip_args)) |
1112 no_mswin_unicode_lib_calls = 1; | |
1113 #endif /* WIN32_NATIVE */ | |
1114 | |
428 | 1115 if (argmatch (argv, argc, "-debug-paths", "--debug-paths", |
776 | 1116 0, NULL, &skip_args)) |
1117 debug_paths = 1; | |
1118 | |
1119 /* Handle (maybe partially) some inhibiting flags. Packages are searched | |
1120 prior to the rest of the command line being parsed in startup.el. */ | |
1121 | |
1122 if (argmatch (argv, argc, "-no-packages", "--no-packages", | |
1123 0, NULL, &skip_args)) | |
1124 { | |
1125 inhibit_all_packages = 1; | |
1126 inhibit_early_packages = 1; | |
1127 vanilla_inhibiting = 1; | |
1128 } | |
1129 | |
428 | 1130 if (argmatch (argv, argc, "-no-early-packages", "--no-early-packages", |
776 | 1131 0, NULL, &skip_args)) |
1132 inhibit_early_packages = 1; | |
1133 | |
1134 #ifdef HAVE_SHLIB | |
1135 if (argmatch (argv, argc, "-no-site-modules", "--no-site-modules", | |
1136 0, NULL, &skip_args)) | |
1137 #endif | |
1138 inhibit_site_modules = 1; | |
854 | 1139 |
776 | 1140 if (argmatch (argv, argc, "-vanilla", "--vanilla", |
1141 0, NULL, &skip_args)) | |
428 | 1142 { |
1143 inhibit_early_packages = 1; | |
776 | 1144 vanilla_inhibiting = 1; |
428 | 1145 } |
1146 | |
1147 if (argmatch (argv, argc, "-no-autoloads", "--no-autoloads", | |
776 | 1148 0, NULL, &skip_args)) |
428 | 1149 { |
1150 inhibit_autoloads = 1; | |
776 | 1151 inhibit_early_packages = 1; |
1152 vanilla_inhibiting = 1; | |
428 | 1153 } |
1154 | |
1155 /* Partially handle the -version and -help switches: they imply -batch, | |
1156 but are not removed from the list. */ | |
1157 if (argmatch (argv, argc, "-help", "--help", 3, NULL, &skip_args)) | |
1158 noninteractive = 1, skip_args--; | |
1159 | |
1160 if (argmatch (argv, argc, "-version", "--version", 3, NULL, &skip_args) || | |
1161 argmatch (argv, argc, "-V", 0, 2, NULL, &skip_args)) | |
1162 noninteractive = 1, skip_args--; | |
1163 | |
1164 /* Now, figure out which type of console is our first console. */ | |
1165 | |
1166 if (noninteractive) | |
1167 display_use = "stream"; | |
1315 | 1168 |
1169 if (argmatch (argv, argc, "-nw", "--no-windows", 0, NULL, &skip_args) || | |
1170 argmatch (argv, argc, "-tty", "--use-tty", 0, NULL, &skip_args)) | |
1171 { | |
1172 check_compatible_window_system ("tty"); | |
428 | 1173 #ifndef HAVE_TTY |
1315 | 1174 fatal ("Sorry, this XEmacs was not compiled with TTY support"); |
1175 #endif | |
1176 } | |
1177 | |
1178 if (argmatch (argv, argc, "-x", "--use-x", 0, NULL, &skip_args)) | |
1179 { | |
1180 check_compatible_window_system ("x"); | |
1181 #ifndef HAVE_X_WINDOWS | |
1182 fatal ("Sorry, this XEmacs was not compiled with X support"); | |
1183 #endif | |
1184 } | |
1185 | |
1186 if (argmatch (argv, argc, "-gtk", "--use-gtk", 0, NULL, &skip_args) || | |
1187 argmatch (argv, argc, "-gnome", "--use-gnome", 0, NULL, &skip_args)) | |
1188 { | |
1189 check_compatible_window_system ("gtk"); | |
1190 #ifndef HAVE_GTK | |
1191 fatal ("Sorry, this XEmacs was not compiled with GTK support"); | |
1192 #endif | |
1193 } | |
1194 | |
1195 if (argmatch (argv, argc, "-msw", "--use-ms-windows", 0, NULL, &skip_args)) | |
1196 { | |
1197 check_compatible_window_system ("mswindows"); | |
1198 #ifndef HAVE_MS_WINDOWS | |
1199 fatal ("Sorry, this XEmacs was not compiled with MS Windows support"); | |
1200 #endif | |
1201 } | |
1202 | |
1203 /* Handle other switches implying particular window systems: */ | |
1204 | |
1205 /* Handle the -t switch, which specifies filename to use as terminal */ | |
1206 { | |
2367 | 1207 Wexttext *term; |
1315 | 1208 if (argmatch (argv, argc, "-t", "--terminal", 0, &term, &skip_args)) |
1209 { | |
2367 | 1210 int fd; |
1211 | |
1315 | 1212 check_compatible_window_system ("tty"); |
1213 #ifndef HAVE_TTY | |
1214 fatal ("Sorry, this XEmacs was not compiled with TTY support"); | |
1215 #endif | |
1216 | |
1217 retry_close (0); | |
1218 retry_close (1); | |
2367 | 1219 |
1220 fd = wext_retry_open (term, O_RDWR | OPEN_BINARY, 2); | |
1221 /* Conversions are not possible yet, and printing will be in | |
1222 external format, so strerror() and ttyname() are OK. */ | |
4710
3a87551bfeb5
Fixes for a number of minor warnings issued by gcc. See xemacs-patches message
Jerry James <james@xemacs.org>
parents:
4693
diff
changeset
|
1223 if (fd < 0 || dup (0) < 0) |
2367 | 1224 fatal ("%s: %s", WEXTTEXT_TO_8_BIT (term), strerror (errno)); |
1315 | 1225 if (! isatty (0)) |
2367 | 1226 fatal ("%s: not a tty", WEXTTEXT_TO_8_BIT (term)); |
1315 | 1227 |
1228 #if 0 | |
1229 stderr_out ("Using %s", ttyname (0)); | |
1230 #endif | |
2367 | 1231 stderr_out ("Using %s", WEXTTEXT_TO_8_BIT (term)); |
1315 | 1232 } |
1233 } | |
1234 | |
428 | 1235 /* Stupid kludge to catch command-line display spec. We can't |
1236 handle this argument entirely in window-system-dependent code | |
1237 because we don't even know which window-system-dependent code | |
1238 to run until we've recognized this argument. */ | |
1315 | 1239 { |
428 | 1240 #ifdef HAVE_X_WINDOWS |
2367 | 1241 Wexttext *dpy = 0; |
1315 | 1242 int count_before = skip_args; |
1243 | |
1244 if (argmatch (argv, argc, "-d", "--display", 3, &dpy, &skip_args) || | |
1245 argmatch (argv, argc, "-display", 0, 3, &dpy, &skip_args)) | |
1246 { | |
1247 check_compatible_window_system ("x"); | |
1248 display_arg = 1; | |
1249 } | |
428 | 1250 /* If we have the form --display=NAME, |
1251 convert it into -d name. | |
1252 This requires inserting a new element into argv. */ | |
1253 if (dpy != 0 && skip_args - count_before == 1) | |
1254 { | |
2994 | 1255 Wexttext **new_ = xnew_array (Wexttext *, argc + 2); |
428 | 1256 int j; |
1257 | |
1258 for (j = 0; j < count_before + 1; j++) | |
2994 | 1259 new_[j] = argv[j]; |
4932 | 1260 new_[count_before + 1] = (Wexttext *) WEXTSTRING ("-d"); |
2994 | 1261 new_[count_before + 2] = dpy; |
428 | 1262 for (j = count_before + 2; j <argc; j++) |
2994 | 1263 new_[j + 1] = argv[j]; |
1264 argv = new_; | |
428 | 1265 argc++; |
1266 } | |
1267 /* Change --display to -d, when its arg is separate. */ | |
1268 else if (dpy != 0 && skip_args > count_before | |
1269 && argv[count_before + 1][1] == '-') | |
4932 | 1270 argv[count_before + 1] = (Wexttext *) WEXTSTRING ("-d"); |
428 | 1271 |
1272 /* Don't actually discard this arg. */ | |
1273 skip_args = count_before; | |
1315 | 1274 #endif /* HAVE_X_WINDOWS */ |
1275 } | |
1276 | |
1277 /* If no switch telling us which window system to use, try other | |
1278 possibilities: */ | |
1279 | |
1280 #if defined (HAVE_X_WINDOWS) || defined (HAVE_GTK) | |
1281 if (!display_use) | |
1282 { | |
2367 | 1283 Wexttext *dpy; |
1315 | 1284 /* If there is a non-empty environment var DISPLAY, assume X or GTK, |
1285 but don't set `display_arg', which is only to be set if the | |
1286 display was specified on the command line. */ | |
2367 | 1287 if ((dpy = wext_getenv (WEXTSTRING ("DISPLAY"))) && dpy[0]) |
1315 | 1288 #ifdef HAVE_X_WINDOWS |
1289 /* #### Who gets precedence? X or GTK? For the moment, GTK support is | |
1290 unstable so use X. Maybe eventually we will switch this. */ | |
428 | 1291 display_use = "x"; |
1315 | 1292 #else |
1293 display_use = "gtk"; | |
1294 #endif | |
1295 } | |
1296 #endif /* defined (HAVE_X_WINDOWS) || defined (HAVE_GTK) */ | |
1297 | |
428 | 1298 #ifdef HAVE_MS_WINDOWS |
1315 | 1299 if (!display_use) |
1300 display_use = "mswindows"; | |
428 | 1301 #endif /* HAVE_MS_WINDOWS */ |
1315 | 1302 |
1303 #ifdef HAVE_TTY | |
1304 if (!display_use) | |
1305 display_use = "tty"; | |
1306 #endif /* HAVE_MS_WINDOWS */ | |
1307 | |
1308 if (!display_use) | |
1309 fatal ("No window systems and no TTY's in this XEmacs: Must specify " | |
1310 "-batch"); | |
428 | 1311 |
1312 noninteractive1 = noninteractive; | |
1313 | |
1314 /****** Now initialize everything *******/ | |
1315 | |
1204 | 1316 /* NOTE NOTE NOTE: |
1317 | |
1318 In the code below, there are three different states we are concerned | |
1319 about: | |
1320 | |
1321 "raw-temacs" == No dumped Lisp data present. `temacs', or (with pdump) | |
1322 `xemacs -nd'. | |
1323 | |
1324 "run-temacs" == We are restarting. run-emacs-from-temacs is called, | |
1325 aka `run-temacs' on the command line. | |
1326 | |
1327 "post-dump" == We are running an unexec()ed XEmacs, or we have loaded | |
1328 dump data using pdump_load(). | |
1329 | |
1330 initialized==0 => raw-temacs | |
1331 initialized!=0 && restart!=0 => run-temacs | |
1332 initialized!=0 && restart==0 => post-dump | |
1333 | |
1334 When post-pdump_load(), we need to reinitialize various structures. | |
1335 This case is noted in the code below by | |
1336 | |
1337 initialized + | |
1338 !restart + | |
1339 ifdef PDUMP. | |
1340 | |
1341 In the comments below, "dump time" or "dumping" == raw-temacs. | |
1342 "run time" == run-temacs or post-dump. | |
1343 */ | |
1344 | |
428 | 1345 /* First, do really basic environment initialization -- catching signals |
1346 and the like. These functions have no dependence on any part of | |
1347 the Lisp engine and need to be done both at dump time and at run time. */ | |
1348 | |
1349 init_signals_very_early (); | |
3092 | 1350 #ifdef NEW_GC |
1351 vdb_install_signal_handler (); | |
3263 | 1352 #endif /* NEW_GC */ |
428 | 1353 init_data_very_early (); /* Catch math errors. */ |
1354 init_floatfns_very_early (); /* Catch floating-point math errors. */ | |
1355 init_process_times_very_early (); /* Initialize our process timers. | |
1356 As early as possible, of course, | |
1357 so we can be fairly accurate. */ | |
771 | 1358 |
657 | 1359 #ifdef HAVE_MS_WINDOWS |
2367 | 1360 /* Depends on XEUNICODE_P */ |
771 | 1361 init_mswindows_dde_very_early (); /* DDE needs to be initialized early so |
1362 that the client doesn't give up | |
1363 waiting. */ | |
657 | 1364 #endif |
428 | 1365 |
1366 /* Now initialize the Lisp engine and the like. Done only during | |
1367 dumping. No dependence on anything that may be in the user's | |
1368 environment when the dumped XEmacs is run. | |
1369 | |
1370 We try to do things in an order that minimizes the non-obvious | |
1371 dependencies between functions. */ | |
1372 | |
1330 | 1373 /* purify_flag is set to indicate we are dumping (its name refers to |
1374 purespace, which no longer exists and was a way of marking some | |
1375 areas read-only so they could be shared among many processes). | |
1376 | |
1377 loadup.el will set to nil at end. */ | |
428 | 1378 |
1379 purify_flag = 0; | |
1380 #ifdef PDUMP | |
1204 | 1381 in_pdump = 0; |
428 | 1382 if (restart) |
1383 initialized = 1; | |
771 | 1384 else if (nodumpfile) |
1385 { | |
1386 initialized = 0; | |
442 | 1387 purify_flag = 1; |
771 | 1388 } |
1389 else | |
1390 { | |
1391 | |
1392 /* Keep command options from getting stomped. | |
1393 | |
1394 Some LISP-visible options are changed by XEmacs _after_ the data is | |
1395 dumped in building a --pdump XEmacs, but _before_ it is restored in | |
1396 normal operation. Thus the restored values overwrite the values | |
1397 XEmacs is getting at run-time. Such variables must be saved here, | |
1398 and restored after loading the dumped data. | |
1399 | |
776 | 1400 (Remember: Only LISP-visible options that are set up to this point |
1401 need to be listed here.) | |
771 | 1402 */ |
1403 | |
1404 /* noninteractive1 is saved in noninteractive, which isn't | |
1405 LISP-visible */ | |
1406 int inhibit_early_packages_save = inhibit_early_packages; | |
1407 int inhibit_autoloads_save = inhibit_autoloads; | |
776 | 1408 int inhibit_all_packages_save = inhibit_all_packages; |
1409 int vanilla_inhibiting_save = vanilla_inhibiting; | |
771 | 1410 int debug_paths_save = debug_paths; |
776 | 1411 int inhibit_site_lisp_save = inhibit_site_lisp; |
771 | 1412 int inhibit_site_modules_save = inhibit_site_modules; |
1413 | |
1414 initialized = pdump_load (argv[0]); | |
1415 | |
1416 /* Now unstomp everything */ | |
1417 noninteractive1 = noninteractive; | |
1418 inhibit_early_packages = inhibit_early_packages_save; | |
1419 inhibit_autoloads = inhibit_autoloads_save; | |
776 | 1420 inhibit_all_packages = inhibit_all_packages_save; |
1421 vanilla_inhibiting = vanilla_inhibiting_save; | |
771 | 1422 debug_paths = debug_paths_save; |
776 | 1423 inhibit_site_lisp = inhibit_site_lisp_save; |
771 | 1424 inhibit_site_modules = inhibit_site_modules_save; |
1425 | |
1426 if (initialized) | |
3466 | 1427 run_temacs_argc = -1; |
771 | 1428 else |
1429 purify_flag = 1; | |
1430 } | |
2367 | 1431 #else /* not PDUMP */ |
428 | 1432 if (!initialized) |
1433 purify_flag = 1; | |
1434 #endif | |
1435 | |
1204 | 1436 init_alloc_early (); |
1437 | |
3092 | 1438 init_gc_early (); |
1439 | |
428 | 1440 if (!initialized) |
1441 { | |
1442 /* Initialize things so that new Lisp objects | |
1443 can be created and objects can be staticpro'd. | |
1444 Must be basically the very first thing done | |
1445 because pretty much all of the initialization | |
1446 routines below create new objects. */ | |
1447 init_alloc_once_early (); | |
1448 | |
3092 | 1449 init_gc_once_early (); |
1450 | |
428 | 1451 /* Initialize Qnil, Qt, Qunbound, and the |
1452 obarray. After this, symbols can be | |
442 | 1453 interned. This depends on init_alloc_once_early(). */ |
428 | 1454 init_symbols_once_early (); |
1455 | |
1456 /* Declare the basic symbols pertaining to errors, | |
442 | 1457 So that DEFERROR*() can be called. */ |
428 | 1458 init_errors_once_early (); |
1459 | |
1460 /* Make sure that opaque pointers can be created. */ | |
1461 init_opaque_once_early (); | |
1462 | |
771 | 1463 /* Make sure that hash tables can be created. */ |
1464 init_elhash_once_early (); | |
1465 | |
1466 /* Make sure that eistrings can be created. */ | |
1467 init_eistring_once_early (); | |
5157
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1468 } |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1469 #ifdef PDUMP |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1470 else if (!restart) /* after successful pdump_load() |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1471 (note, we are inside ifdef PDUMP) */ |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1472 { |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1473 reinit_alloc_early (); |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1474 reinit_gc_early (); |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1475 reinit_symbols_early (); |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1476 #ifndef NEW_GC |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1477 reinit_opaque_early (); |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1478 #endif /* not NEW_GC */ |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1479 reinit_eistring_early (); |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1480 #ifdef WITH_NUMBER_TYPES |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1481 reinit_vars_of_number (); |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1482 #endif |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1483 } |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1484 #endif /* PDUMP */ |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1485 |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1486 if (!initialized) |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1487 { |
428 | 1488 /* Now declare all the symbols and define all the Lisp primitives. |
1489 | |
1490 The *only* thing that the syms_of_*() functions are allowed to do | |
442 | 1491 is call one of the following: |
1492 | |
5117
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3024
diff
changeset
|
1493 INIT_LISP_OBJECT() |
442 | 1494 defsymbol(), DEFSYMBOL(), or DEFSYMBOL_MULTIWORD_PREDICATE() |
428 | 1495 defsubr() (i.e. DEFSUBR) |
442 | 1496 deferror(), DEFERROR(), or DEFERROR_STANDARD() |
1497 defkeyword() or DEFKEYWORD() | |
563 | 1498 Fput() |
428 | 1499 |
1500 Order does not matter in these functions. | |
1501 */ | |
1502 | |
1503 syms_of_abbrev (); | |
1504 syms_of_alloc (); | |
3263 | 1505 #ifdef NEW_GC |
2720 | 1506 syms_of_mc_alloc (); |
3263 | 1507 #endif /* NEW_GC */ |
3092 | 1508 syms_of_gc (); |
1509 #ifdef NEW_GC | |
1510 syms_of_vdb (); | |
1511 #endif /* NEW_GC */ | |
5168
cf900a2f1fa3
extract gap array from extents.c, use in range tables
Ben Wing <ben@xemacs.org>
parents:
5160
diff
changeset
|
1512 syms_of_array (); |
428 | 1513 syms_of_buffer (); |
1514 syms_of_bytecode (); | |
1515 syms_of_callint (); | |
1516 syms_of_casefiddle (); | |
1517 syms_of_casetab (); | |
1518 syms_of_chartab (); | |
1519 syms_of_cmdloop (); | |
1520 syms_of_cmds (); | |
1521 syms_of_console (); | |
1522 syms_of_data (); | |
1523 #ifdef DEBUG_XEMACS | |
1524 syms_of_debug (); | |
440 | 1525 syms_of_tests (); |
428 | 1526 #endif /* DEBUG_XEMACS */ |
1527 syms_of_device (); | |
1528 #ifdef HAVE_DIALOGS | |
1529 syms_of_dialog (); | |
1530 #endif | |
1531 syms_of_dired (); | |
1532 syms_of_doc (); | |
1533 syms_of_editfns (); | |
1534 syms_of_elhash (); | |
1535 syms_of_emacs (); | |
1536 syms_of_eval (); | |
1537 #ifdef HAVE_X_WINDOWS | |
1538 syms_of_event_Xt (); | |
1539 #endif | |
462 | 1540 #ifdef HAVE_GTK |
1541 syms_of_event_gtk (); | |
1542 #endif | |
428 | 1543 #ifdef HAVE_DRAGNDROP |
1544 syms_of_dragdrop (); | |
1545 #endif | |
1546 syms_of_event_stream (); | |
1547 syms_of_events (); | |
1548 syms_of_extents (); | |
1549 syms_of_faces (); | |
1550 syms_of_fileio (); | |
1551 #ifdef CLASH_DETECTION | |
1552 syms_of_filelock (); | |
1553 #endif /* CLASH_DETECTION */ | |
1554 syms_of_floatfns (); | |
1555 syms_of_fns (); | |
826 | 1556 #ifdef USE_C_FONT_LOCK |
428 | 1557 syms_of_font_lock (); |
826 | 1558 #endif /* USE_C_FONT_LOCK */ |
428 | 1559 syms_of_frame (); |
1560 syms_of_general (); | |
1561 syms_of_glyphs (); | |
5091 | 1562 #ifdef HAVE_WINDOW_SYSTEM |
428 | 1563 syms_of_glyphs_eimage (); |
563 | 1564 syms_of_glyphs_shared (); |
5091 | 1565 #endif |
428 | 1566 syms_of_glyphs_widget (); |
1567 syms_of_gui (); | |
1568 syms_of_gutter (); | |
1569 syms_of_indent (); | |
1570 syms_of_intl (); | |
1571 syms_of_keymap (); | |
1572 syms_of_lread (); | |
5157
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1573 syms_of_lstream (); |
428 | 1574 syms_of_macros (); |
1575 syms_of_marker (); | |
1576 syms_of_md5 (); | |
1577 #ifdef HAVE_DATABASE | |
1578 syms_of_database (); | |
1579 #endif | |
1580 #ifdef HAVE_MENUBARS | |
1581 syms_of_menubar (); | |
1582 #endif | |
1583 syms_of_minibuf (); | |
1584 #ifdef HAVE_SHLIB | |
1585 syms_of_module (); | |
1586 #endif | |
1983 | 1587 #ifdef WITH_NUMBER_TYPES |
1588 syms_of_number (); | |
1589 #endif | |
428 | 1590 syms_of_objects (); |
1591 syms_of_print (); | |
1592 syms_of_process (); | |
1593 #ifdef HAVE_WIN32_PROCESSES | |
1594 syms_of_process_nt (); | |
1595 #endif | |
1596 syms_of_profile (); | |
1303 | 1597 #if defined (HAVE_MMAP) && defined (REL_ALLOC) && !defined (DOUG_LEA_MALLOC) |
428 | 1598 syms_of_ralloc (); |
1599 #endif /* HAVE_MMAP && REL_ALLOC */ | |
1600 syms_of_rangetab (); | |
1601 syms_of_redisplay (); | |
1602 syms_of_search (); | |
1603 syms_of_select (); | |
1604 syms_of_signal (); | |
1605 syms_of_sound (); | |
1606 syms_of_specifier (); | |
1607 syms_of_symbols (); | |
1608 syms_of_syntax (); | |
1609 #ifdef HAVE_SCROLLBARS | |
1610 syms_of_scrollbar (); | |
1611 #endif | |
771 | 1612 syms_of_text (); |
428 | 1613 #ifdef HAVE_TOOLBARS |
1614 syms_of_toolbar (); | |
1615 #endif | |
1616 syms_of_undo (); | |
1617 syms_of_widget (); | |
1618 syms_of_window (); | |
1619 | |
1620 #ifdef HAVE_TTY | |
1621 syms_of_console_tty (); | |
1622 syms_of_device_tty (); | |
771 | 1623 syms_of_frame_tty (); |
428 | 1624 syms_of_objects_tty (); |
1625 #endif | |
1626 | |
462 | 1627 #ifdef HAVE_GTK |
1628 syms_of_device_gtk (); | |
1629 syms_of_frame_gtk (); | |
1630 syms_of_glyphs_gtk (); | |
1631 syms_of_objects_gtk (); | |
1632 syms_of_ui_gtk (); | |
1633 syms_of_select_gtk (); | |
1634 #ifdef HAVE_DIALOGS | |
1635 syms_of_dialog_gtk (); | |
1636 #endif | |
1637 #ifdef HAVE_MENUBARS | |
1638 syms_of_menubar_gtk (); | |
1639 #endif | |
1640 syms_of_select_gtk (); | |
854 | 1641 |
771 | 1642 #ifdef HAVE_GUI_OBJECTS |
462 | 1643 syms_of_gui_gtk (); |
1644 #endif | |
1645 #endif /* HAVE_GTK */ | |
1646 | |
428 | 1647 #ifdef HAVE_X_WINDOWS |
442 | 1648 #ifdef HAVE_BALLOON_HELP |
440 | 1649 syms_of_balloon_x (); |
442 | 1650 #endif |
428 | 1651 syms_of_device_x (); |
771 | 1652 #ifdef HAVE_X_DIALOGS |
428 | 1653 syms_of_dialog_x (); |
1654 #endif | |
1655 syms_of_frame_x (); | |
1656 syms_of_glyphs_x (); | |
1657 syms_of_objects_x (); | |
1658 #ifdef HAVE_MENUBARS | |
1659 syms_of_menubar_x (); | |
1660 #endif | |
440 | 1661 syms_of_select_x (); |
771 | 1662 #ifdef HAVE_GUI_OBJECTS |
428 | 1663 syms_of_gui_x (); |
1664 #endif | |
771 | 1665 syms_of_intl_x (); |
428 | 1666 #ifdef HAVE_XIM |
1667 #ifdef XIM_XLIB | |
1668 syms_of_input_method_xlib (); | |
1669 #endif | |
1670 #endif /* HAVE_XIM */ | |
3094 | 1671 |
4916
a6c778975d7d
split USE_XFT into HAVE_XFT/USE_XFT
Ben Wing <ben@xemacs.org>
parents:
4871
diff
changeset
|
1672 #ifdef HAVE_XFT |
3354 | 1673 syms_of_font_mgr(); |
3094 | 1674 #endif |
1675 | |
428 | 1676 #endif /* HAVE_X_WINDOWS */ |
1677 | |
1678 #ifdef HAVE_MS_WINDOWS | |
1679 syms_of_console_mswindows (); | |
1680 syms_of_device_mswindows (); | |
903 | 1681 syms_of_event_mswindows (); |
771 | 1682 #ifdef HAVE_DIALOGS |
442 | 1683 syms_of_dialog_mswindows (); |
771 | 1684 #endif |
428 | 1685 syms_of_frame_mswindows (); |
1686 syms_of_objects_mswindows (); | |
1687 syms_of_select_mswindows (); | |
1688 syms_of_glyphs_mswindows (); | |
771 | 1689 #ifdef HAVE_GUI_OBJECTS |
440 | 1690 syms_of_gui_mswindows (); |
771 | 1691 #endif |
428 | 1692 #ifdef HAVE_MENUBARS |
1693 syms_of_menubar_mswindows (); | |
1694 #endif | |
1695 #ifdef HAVE_SCROLLBARS | |
1696 syms_of_scrollbar_mswindows (); | |
1697 #endif | |
442 | 1698 #endif /* HAVE_MS_WINDOWS */ |
902 | 1699 #ifdef WIN32_NATIVE |
428 | 1700 syms_of_dired_mswindows (); |
771 | 1701 syms_of_nt (); |
428 | 1702 #endif |
1315 | 1703 #ifdef WIN32_ANY |
442 | 1704 syms_of_win32 (); |
1705 #endif | |
428 | 1706 |
771 | 1707 syms_of_file_coding (); |
1708 syms_of_unicode (); | |
428 | 1709 #ifdef MULE |
1710 syms_of_mule_ccl (); | |
1711 syms_of_mule_charset (); | |
771 | 1712 syms_of_mule_coding (); |
428 | 1713 #ifdef HAVE_WNN |
1714 syms_of_mule_wnn (); | |
1715 #endif | |
2973 | 1716 #if defined(HAVE_CANNA) && !defined (HAVE_SHLIB) |
1717 syms_of_canna_api (); | |
428 | 1718 #endif /* HAVE_CANNA */ |
1719 #endif /* MULE */ | |
1720 | |
1315 | 1721 #ifdef WIN32_ANY |
771 | 1722 syms_of_intl_win32 (); |
1723 #endif | |
1724 | |
428 | 1725 #ifdef SYMS_SYSTEM |
1726 SYMS_SYSTEM; | |
1727 #endif | |
1728 | |
1729 #ifdef SYMS_MACHINE | |
1730 SYMS_MACHINE; | |
1731 #endif | |
1732 | |
1733 /* Prior to XEmacs 21, this was `#if 0'ed out. -slb */ | |
1734 #if defined (LOSING_GCC_DESTRUCTOR_FREE_BUG) | |
1735 syms_of_free_hook (); | |
1736 #endif | |
1737 | |
1738 #ifdef TOOLTALK | |
1739 syms_of_tooltalk (); | |
1740 #endif | |
1741 | |
1742 #ifdef SUNPRO | |
1743 syms_of_sunpro (); | |
1744 #endif | |
1745 | |
996 | 1746 #if defined (HAVE_LDAP) && !defined (HAVE_SHLIB) |
428 | 1747 syms_of_eldap (); |
1748 #endif | |
1749 | |
1750 #ifdef HAVE_GPM | |
442 | 1751 syms_of_gpmevent (); |
1752 #endif | |
1753 | |
996 | 1754 #if defined (HAVE_POSTGRESQL) && !defined (HAVE_SHLIB) |
442 | 1755 syms_of_postgresql (); |
428 | 1756 #endif |
5157
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1757 } |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1758 |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1759 if (!initialized |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1760 #ifdef PDUMP |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1761 || !restart |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1762 #endif |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1763 ) |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1764 { |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1765 buffer_objects_create (); |
5170
5ddbab03b0e6
various fixes to memory-usage stats
Ben Wing <ben@xemacs.org>
parents:
5169
diff
changeset
|
1766 casetab_objects_create (); |
5157
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1767 extent_objects_create (); |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1768 face_objects_create (); |
5158
9e0b43d3095c
more cleanups to object-memory-usage stuff
Ben Wing <ben@xemacs.org>
parents:
5157
diff
changeset
|
1769 frame_objects_create (); |
5157
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1770 glyph_objects_create (); |
5158
9e0b43d3095c
more cleanups to object-memory-usage stuff
Ben Wing <ben@xemacs.org>
parents:
5157
diff
changeset
|
1771 hash_table_objects_create (); |
5157
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1772 lstream_objects_create (); |
5160
ab9ee10a53e4
fix various problems with allocation statistics, track overhead properly
Ben Wing <ben@xemacs.org>
parents:
5158
diff
changeset
|
1773 #ifdef MULE |
5157
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1774 mule_charset_objects_create (); |
5160
ab9ee10a53e4
fix various problems with allocation statistics, track overhead properly
Ben Wing <ben@xemacs.org>
parents:
5158
diff
changeset
|
1775 #endif |
5170
5ddbab03b0e6
various fixes to memory-usage stats
Ben Wing <ben@xemacs.org>
parents:
5169
diff
changeset
|
1776 #ifdef HAVE_SCROLLBARS |
5ddbab03b0e6
various fixes to memory-usage stats
Ben Wing <ben@xemacs.org>
parents:
5169
diff
changeset
|
1777 scrollbar_objects_create (); |
5ddbab03b0e6
various fixes to memory-usage stats
Ben Wing <ben@xemacs.org>
parents:
5169
diff
changeset
|
1778 #endif |
5157
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1779 #ifdef HAVE_GTK |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1780 ui_gtk_objects_create (); |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1781 #endif |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1782 window_objects_create (); |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1783 } |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1784 |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1785 if (!initialized) |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1786 { |
428 | 1787 /* Now create the subtypes for the types that have them. |
1788 We do this before the vars_*() because more symbols | |
1789 may get initialized here. */ | |
1790 | |
1791 /* Now initialize the console types and associated symbols. | |
1792 Other than the first function below, the functions may | |
1793 make exactly the following function/macro calls: | |
1794 | |
1795 INITIALIZE_CONSOLE_TYPE() | |
1796 CONSOLE_HAS_METHOD() | |
1797 | |
1798 For any given console type, the former macro must be called | |
1799 before the any calls to the latter macro. */ | |
1800 | |
1801 console_type_create (); | |
1802 | |
1803 console_type_create_stream (); | |
1804 | |
1805 #ifdef HAVE_TTY | |
1806 console_type_create_tty (); | |
1807 console_type_create_device_tty (); | |
1808 console_type_create_frame_tty (); | |
1809 console_type_create_objects_tty (); | |
1810 console_type_create_redisplay_tty (); | |
1811 #endif | |
1812 | |
462 | 1813 #ifdef HAVE_GTK |
1814 console_type_create_gtk (); | |
1815 console_type_create_select_gtk (); | |
1816 console_type_create_device_gtk (); | |
1817 console_type_create_frame_gtk (); | |
1818 console_type_create_objects_gtk (); | |
1819 console_type_create_glyphs_gtk (); | |
1820 console_type_create_redisplay_gtk (); | |
1821 #ifdef HAVE_MENUBARS | |
1822 console_type_create_menubar_gtk (); | |
1823 #endif | |
1824 #ifdef HAVE_SCROLLBARS | |
1825 console_type_create_scrollbar_gtk (); | |
1826 #endif | |
1827 #ifdef HAVE_TOOLBARS | |
1828 console_type_create_toolbar_gtk (); | |
1829 #endif | |
1830 #ifdef HAVE_DIALOGS | |
1831 console_type_create_dialog_gtk (); | |
1832 #endif | |
1833 #endif /* HAVE_GTK */ | |
1834 | |
428 | 1835 #ifdef HAVE_X_WINDOWS |
1836 console_type_create_x (); | |
1837 console_type_create_device_x (); | |
1838 console_type_create_frame_x (); | |
1839 console_type_create_glyphs_x (); | |
1840 console_type_create_select_x (); | |
1841 #ifdef HAVE_MENUBARS | |
1842 console_type_create_menubar_x (); | |
1843 #endif | |
1844 console_type_create_objects_x (); | |
1845 console_type_create_redisplay_x (); | |
1846 #ifdef HAVE_SCROLLBARS | |
1847 console_type_create_scrollbar_x (); | |
1848 #endif | |
1849 #ifdef HAVE_TOOLBARS | |
1850 console_type_create_toolbar_x (); | |
1851 #endif | |
771 | 1852 #ifdef HAVE_X_DIALOGS |
428 | 1853 console_type_create_dialog_x (); |
1854 #endif | |
1855 #endif /* HAVE_X_WINDOWS */ | |
1856 | |
1857 #ifdef HAVE_MS_WINDOWS | |
1858 console_type_create_mswindows (); | |
1859 console_type_create_device_mswindows (); | |
1860 console_type_create_frame_mswindows (); | |
1861 console_type_create_objects_mswindows (); | |
1862 console_type_create_redisplay_mswindows (); | |
1863 console_type_create_glyphs_mswindows (); | |
1864 console_type_create_select_mswindows (); | |
1865 # ifdef HAVE_SCROLLBARS | |
1866 console_type_create_scrollbar_mswindows (); | |
1867 # endif | |
1868 #ifdef HAVE_MENUBARS | |
1869 console_type_create_menubar_mswindows (); | |
1870 #endif | |
1871 #ifdef HAVE_TOOLBARS | |
1872 console_type_create_toolbar_mswindows (); | |
1873 #endif | |
1874 #ifdef HAVE_DIALOGS | |
1875 console_type_create_dialog_mswindows (); | |
1876 #endif | |
1877 #endif | |
1878 | |
1879 /* Now initialize the specifier types and associated symbols. | |
1880 Other than the first function below, the functions may | |
1881 make exactly the following function/macro calls: | |
1882 | |
1883 INITIALIZE_SPECIFIER_TYPE() | |
1884 SPECIFIER_HAS_METHOD() | |
1885 | |
1886 For any given specifier type, the former macro must be called | |
1887 before the any calls to the latter macro. */ | |
1888 | |
1889 specifier_type_create (); | |
1890 | |
1891 specifier_type_create_image (); | |
1892 specifier_type_create_gutter (); | |
1893 specifier_type_create_objects (); | |
1894 #ifdef HAVE_TOOLBARS | |
1895 specifier_type_create_toolbar (); | |
1896 #endif | |
1897 | |
771 | 1898 /* Now initialize the coding system types and associated symbols. |
1899 Other than the first function below, the functions may | |
1900 make exactly the following function/macro calls: | |
1901 | |
1902 INITIALIZE_CODING_SYSTEM_TYPE() | |
1903 CODING_SYSTEM_HAS_METHOD() | |
1904 | |
1905 For any given coding system type, the former macro must be called | |
1906 before the any calls to the latter macro. */ | |
1907 | |
1908 coding_system_type_create (); | |
1909 coding_system_type_create_unicode (); | |
1315 | 1910 #ifdef WIN32_ANY |
771 | 1911 coding_system_type_create_intl_win32 (); |
1912 #endif | |
1913 #ifdef MULE | |
1914 coding_system_type_create_mule_coding (); | |
1915 #endif | |
1916 | |
428 | 1917 /* Now initialize the image instantiator formats and associated symbols. |
1918 Other than the first function below, the functions may | |
1919 make exactly the following function/macro calls: | |
1920 | |
1921 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT() | |
1922 IIFORMAT_HAS_METHOD() | |
1923 IIFORMAT_VALID_KEYWORD() | |
1924 | |
1925 For any given image instantiator format, the first macro must be | |
1926 called before the any calls to the other macros. */ | |
1927 | |
1928 image_instantiator_format_create (); | |
5091 | 1929 #ifdef HAVE_WINDOW_SYSTEM |
428 | 1930 image_instantiator_format_create_glyphs_eimage (); |
5091 | 1931 #endif |
428 | 1932 image_instantiator_format_create_glyphs_widget (); |
1933 #ifdef HAVE_TTY | |
1934 image_instantiator_format_create_glyphs_tty (); | |
1935 #endif | |
1936 #ifdef HAVE_X_WINDOWS | |
1937 image_instantiator_format_create_glyphs_x (); | |
1938 #endif /* HAVE_X_WINDOWS */ | |
1939 #ifdef HAVE_MS_WINDOWS | |
1940 image_instantiator_format_create_glyphs_mswindows (); | |
1204 | 1941 #endif /* HAVE_MS_WINDOWS */ |
462 | 1942 #ifdef HAVE_GTK |
1943 image_instantiator_format_create_glyphs_gtk (); | |
1944 #endif | |
2367 | 1945 } |
1946 #ifdef PDUMP | |
1947 else if (!restart) /* after successful pdump_load() | |
1948 (note, we are inside ifdef PDUMP) */ | |
1949 { | |
1950 reinit_console_type_create_stream (); | |
1951 #ifdef HAVE_TTY | |
1952 reinit_console_type_create_tty (); | |
1953 #endif | |
1954 #ifdef HAVE_X_WINDOWS | |
1955 reinit_console_type_create_x (); | |
1956 reinit_console_type_create_device_x (); | |
1957 #endif | |
1958 #ifdef HAVE_MS_WINDOWS | |
1959 reinit_console_type_create_mswindows (); | |
1960 #endif | |
1961 #ifdef HAVE_GTK | |
1962 reinit_console_type_create_gtk (); | |
1963 #endif | |
1964 | |
1965 reinit_specifier_type_create (); | |
1966 reinit_specifier_type_create_image (); | |
1967 reinit_specifier_type_create_gutter (); | |
1968 reinit_specifier_type_create_objects (); | |
1969 #ifdef HAVE_TOOLBARS | |
1970 reinit_specifier_type_create_toolbar (); | |
1971 #endif | |
1972 | |
1973 reinit_coding_system_type_create (); | |
1974 reinit_coding_system_type_create_unicode (); | |
1975 #ifdef WIN32_ANY | |
1976 reinit_coding_system_type_create_intl_win32 (); | |
1977 #endif | |
1978 #ifdef MULE | |
1979 reinit_coding_system_type_create_mule_coding (); | |
1980 #endif | |
1981 } | |
1982 #endif /* PDUMP */ | |
1983 | |
1984 if (!initialized | |
1985 #ifdef PDUMP | |
1986 || !restart | |
1987 #endif | |
1988 ) | |
1989 { | |
1990 /* Now initialize the structure types and associated symbols. | |
1991 Other than the first function below, the functions may | |
1992 make exactly the following function/macro calls: | |
1993 | |
1994 define_structure_type() | |
1995 define_structure_type_keyword() | |
1996 | |
1997 */ | |
1998 | |
1999 structure_type_create (); | |
2000 | |
2001 structure_type_create_chartab (); | |
2002 structure_type_create_faces (); | |
2003 structure_type_create_rangetab (); | |
2004 structure_type_create_hash_table (); | |
428 | 2005 |
2006 /* Now initialize the lstream types and associated symbols. | |
2007 Other than the first function below, the functions may | |
2008 make exactly the following function/macro calls: | |
2009 | |
2010 LSTREAM_HAS_METHOD() | |
2011 | |
2012 */ | |
2013 | |
2014 lstream_type_create (); | |
2015 lstream_type_create_file_coding (); | |
853 | 2016 #if defined (HAVE_MS_WINDOWS) && !defined (HAVE_MSG_SELECT) |
428 | 2017 lstream_type_create_mswindows_selectable (); |
2018 #endif | |
2019 | |
2020 /* Initialize processes implementation. | |
2021 The functions may make exactly the following function/macro calls: | |
2022 | |
2023 PROCESS_HAS_METHOD() | |
2024 */ | |
2025 #ifdef HAVE_UNIX_PROCESSES | |
2026 process_type_create_unix (); | |
2027 #endif | |
2028 #ifdef HAVE_WIN32_PROCESSES | |
2029 process_type_create_nt (); | |
2030 #endif | |
2367 | 2031 } |
2032 | |
2033 if (!initialized) | |
2034 { | |
428 | 2035 /* Now initialize most variables. |
2036 | |
2037 These functions may do exactly the following: | |
2038 | |
771 | 2039 -- assigning a symbol or constant value to a variable |
2040 -- using a global variable that has been initialized | |
2041 earlier on in the same function | |
2042 -- DEFVAR_INT() | |
2043 -- DEFVAR_LISP() | |
2044 -- DEFVAR_BOOL() | |
2045 -- DEFER_GETTEXT() | |
2046 -- staticpro*() | |
2047 -- xmalloc*(), xnew*(), and friends | |
2048 -- Dynarr_*() | |
2049 -- Blocktype_*() | |
1303 | 2050 -- Fprovide (symbol) |
771 | 2051 -- intern() |
2052 -- Fput() | |
2053 -- dump_add_*() | |
2054 -- C library functions with no external dependencies, e.g. str*() | |
2055 -- defsymbol(), if it's absolutely necessary and you're sure that | |
2056 the symbol isn't referenced anywhere else in the initialization | |
2057 code | |
2058 -- Fset() on a symbol that is unbound | |
2059 -- Any of the object-creating functions in alloc.c: e.g. | |
2060 - make_string() | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
2061 - build_istring() |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
2062 - build_cistring() |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
2063 - build_ascstring() |
771 | 2064 - make_vector() |
2065 - make_int() | |
2066 - make_char() | |
2067 - make_extent() | |
5127
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5126
diff
changeset
|
2068 - ALLOC_NORMAL_LISP_OBJECT() |
5117
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3024
diff
changeset
|
2069 - ALLOC_SIZED_LISP_OBJECT() |
771 | 2070 - Fcons() |
2071 - listN() | |
2072 - make_lcrecord_list() | |
2073 -- make_opaque_ptr() | |
2074 -- make_lisp_hash_table() (not allowed in 21.4!) | |
2075 -- certain specifier creation functions (but be careful; see | |
2076 glyphs.c for examples) | |
428 | 2077 |
2078 perhaps a few others. | |
446 | 2079 |
771 | 2080 NO EXTERNAL-FORMAT CONVERSIONS. |
2081 | |
446 | 2082 NB: Initialization or assignment should not be done here to certain |
2083 variables settable from the command line. See the comment above | |
2084 the call to pdump_load() in main_1(). This caveat should only | |
2085 apply to vars_of_emacs(). | |
2367 | 2086 |
2087 Order should not matter in these functions. | |
428 | 2088 */ |
2089 | |
2090 /* Now allow Fprovide() statements to be made. */ | |
2091 init_provide_once (); | |
2092 | |
2093 /* Do that before any specifier creation (esp. vars_of_glyphs()) */ | |
2094 vars_of_specifier (); | |
2095 | |
2096 vars_of_abbrev (); | |
2097 vars_of_alloc (); | |
2098 vars_of_buffer (); | |
2099 vars_of_bytecode (); | |
2100 vars_of_callint (); | |
5170
5ddbab03b0e6
various fixes to memory-usage stats
Ben Wing <ben@xemacs.org>
parents:
5169
diff
changeset
|
2101 vars_of_casetab (); |
428 | 2102 vars_of_chartab (); |
2103 vars_of_cmdloop (); | |
2104 vars_of_cmds (); | |
2105 vars_of_console (); | |
2106 vars_of_data (); | |
2107 #ifdef DEBUG_XEMACS | |
2108 vars_of_debug (); | |
440 | 2109 vars_of_tests (); |
428 | 2110 #endif |
2111 vars_of_console_stream (); | |
2112 vars_of_device (); | |
2113 #ifdef HAVE_DIALOGS | |
2114 vars_of_dialog (); | |
2115 #endif | |
2116 vars_of_dired (); | |
2117 vars_of_doc (); | |
2118 #ifdef HAVE_DRAGNDROP | |
2119 vars_of_dragdrop (); | |
2120 #endif | |
2121 vars_of_editfns (); | |
5158
9e0b43d3095c
more cleanups to object-memory-usage stuff
Ben Wing <ben@xemacs.org>
parents:
5157
diff
changeset
|
2122 vars_of_elhash (); |
428 | 2123 vars_of_emacs (); |
2124 vars_of_eval (); | |
2125 | |
2126 #ifdef HAVE_X_WINDOWS | |
2127 vars_of_event_Xt (); | |
2128 #endif | |
1303 | 2129 #if defined (HAVE_TTY) && (defined (DEBUG_TTY_EVENT_STREAM) || !defined (HAVE_X_WINDOWS)) |
428 | 2130 vars_of_event_tty (); |
2131 #endif | |
2132 #ifdef HAVE_MS_WINDOWS | |
2133 vars_of_event_mswindows (); | |
2134 #endif | |
2135 vars_of_event_stream (); | |
2136 | |
2137 vars_of_events (); | |
2138 vars_of_extents (); | |
2139 vars_of_faces (); | |
771 | 2140 vars_of_file_coding (); |
428 | 2141 vars_of_fileio (); |
444 | 2142 #ifdef CLASH_DETECTION |
2143 vars_of_filelock (); | |
2144 #endif | |
428 | 2145 vars_of_floatfns (); |
771 | 2146 vars_of_fns (); |
826 | 2147 #ifdef USE_C_FONT_LOCK |
428 | 2148 vars_of_font_lock (); |
826 | 2149 #endif /* USE_C_FONT_LOCK */ |
428 | 2150 vars_of_frame (); |
3092 | 2151 vars_of_gc (); |
428 | 2152 vars_of_glyphs (); |
5091 | 2153 #ifdef HAVE_WINDOW_SYSTEM |
428 | 2154 vars_of_glyphs_eimage (); |
5091 | 2155 #endif |
428 | 2156 vars_of_glyphs_widget (); |
2157 vars_of_gui (); | |
2158 vars_of_gutter (); | |
2159 vars_of_indent (); | |
2160 vars_of_insdel (); | |
2161 vars_of_intl (); | |
1315 | 2162 #ifdef WIN32_ANY |
771 | 2163 vars_of_intl_win32 (); |
2164 #endif | |
428 | 2165 #ifdef HAVE_XIM |
2166 #ifdef XIM_MOTIF | |
2167 vars_of_input_method_motif (); | |
2168 #else /* XIM_XLIB */ | |
2169 vars_of_input_method_xlib (); | |
2170 #endif | |
2171 #endif /* HAVE_XIM */ | |
2172 vars_of_keymap (); | |
2173 vars_of_lread (); | |
2174 vars_of_lstream (); | |
2175 vars_of_macros (); | |
2176 vars_of_md5 (); | |
2177 #ifdef HAVE_DATABASE | |
2178 vars_of_database (); | |
2179 #endif | |
2180 #ifdef HAVE_MENUBARS | |
2181 vars_of_menubar (); | |
2182 #endif | |
2183 vars_of_minibuf (); | |
2184 vars_of_module (); | |
442 | 2185 #ifdef WIN32_NATIVE |
902 | 2186 vars_of_dired_mswindows (); |
440 | 2187 vars_of_nt (); |
428 | 2188 #endif |
1983 | 2189 #ifdef WITH_NUMBER_TYPES |
2190 vars_of_number (); | |
2191 #endif | |
428 | 2192 vars_of_objects (); |
2193 vars_of_print (); | |
2194 | |
2195 vars_of_process (); | |
2196 #ifdef HAVE_UNIX_PROCESSES | |
2197 vars_of_process_unix (); | |
2198 #endif | |
2199 #ifdef HAVE_WIN32_PROCESSES | |
2200 vars_of_process_nt (); | |
2201 #endif | |
2202 | |
2203 vars_of_profile (); | |
1303 | 2204 #if defined (HAVE_MMAP) && defined (REL_ALLOC) && !defined (DOUG_LEA_MALLOC) |
428 | 2205 vars_of_ralloc (); |
2206 #endif /* HAVE_MMAP && REL_ALLOC */ | |
2526 | 2207 vars_of_realpath (); |
428 | 2208 vars_of_redisplay (); |
814 | 2209 vars_of_regex (); |
428 | 2210 #ifdef HAVE_SCROLLBARS |
2211 vars_of_scrollbar (); | |
2212 #endif | |
2213 vars_of_search (); | |
2214 vars_of_select (); | |
2215 vars_of_sound (); | |
2216 vars_of_symbols (); | |
2217 vars_of_syntax (); | |
771 | 2218 vars_of_text (); |
428 | 2219 #ifdef HAVE_TOOLBARS |
2220 vars_of_toolbar (); | |
2221 #endif | |
2222 vars_of_undo (); | |
2223 vars_of_window (); | |
1315 | 2224 #ifdef WIN32_ANY |
771 | 2225 vars_of_win32 (); |
2226 #endif | |
428 | 2227 |
2228 #ifdef HAVE_TTY | |
2229 vars_of_console_tty (); | |
2230 vars_of_frame_tty (); | |
2231 vars_of_objects_tty (); | |
2232 #endif | |
2233 | |
462 | 2234 #ifdef HAVE_GTK |
2235 vars_of_device_gtk (); | |
4380
461fdb92f3b6
Correct the perhaps_init_unseen_key_defaults GTK code; don't override X11 fonts.
Aidan Kehoe <kehoea@parhasard.net>
parents:
3466
diff
changeset
|
2236 vars_of_console_gtk (); |
462 | 2237 #ifdef HAVE_DIALOGS |
2238 vars_of_dialog_gtk (); | |
2239 #endif | |
2240 vars_of_event_gtk (); | |
2241 vars_of_frame_gtk (); | |
2242 vars_of_glyphs_gtk (); | |
2243 vars_of_ui_gtk (); | |
2244 #ifdef HAVE_MENUBARS | |
2245 vars_of_menubar_gtk (); | |
2246 #endif | |
2247 vars_of_objects_gtk (); | |
2248 vars_of_select_gtk (); | |
2249 #ifdef HAVE_SCROLLBARS | |
2250 vars_of_scrollbar_gtk (); | |
2251 #endif | |
2252 #if defined (HAVE_MENUBARS) || defined (HAVE_SCROLLBARS) || defined (HAVE_DIALOGS) || defined (HAVE_TOOLBARS) | |
2253 vars_of_gui_gtk (); | |
2254 #endif | |
2255 #endif /* HAVE_GTK */ | |
2256 | |
428 | 2257 #ifdef HAVE_X_WINDOWS |
442 | 2258 #ifdef HAVE_BALLOON_HELP |
440 | 2259 vars_of_balloon_x (); |
442 | 2260 #endif |
3381 | 2261 vars_of_console_x (); |
428 | 2262 vars_of_device_x (); |
771 | 2263 #ifdef HAVE_X_DIALOGS |
428 | 2264 vars_of_dialog_x (); |
2265 #endif | |
2266 vars_of_frame_x (); | |
2267 vars_of_glyphs_x (); | |
2268 #ifdef HAVE_MENUBARS | |
2269 vars_of_menubar_x (); | |
2270 #endif | |
2271 vars_of_objects_x (); | |
440 | 2272 vars_of_select_x (); |
428 | 2273 #ifdef HAVE_SCROLLBARS |
2274 vars_of_scrollbar_x (); | |
2275 #endif | |
771 | 2276 #if defined (HAVE_MENUBARS) || defined (HAVE_SCROLLBARS) || defined (HAVE_X_DIALOGS) || defined (HAVE_TOOLBARS) |
428 | 2277 vars_of_gui_x (); |
2278 #endif | |
3094 | 2279 |
4916
a6c778975d7d
split USE_XFT into HAVE_XFT/USE_XFT
Ben Wing <ben@xemacs.org>
parents:
4871
diff
changeset
|
2280 #ifdef HAVE_XFT |
3354 | 2281 vars_of_font_mgr (); |
3094 | 2282 #endif |
2283 | |
440 | 2284 #endif /* HAVE_X_WINDOWS */ |
428 | 2285 |
462 | 2286 |
428 | 2287 #ifdef HAVE_MS_WINDOWS |
2288 vars_of_device_mswindows (); | |
2289 vars_of_console_mswindows (); | |
2290 vars_of_frame_mswindows (); | |
2291 vars_of_objects_mswindows (); | |
2292 vars_of_select_mswindows (); | |
2293 vars_of_glyphs_mswindows (); | |
2294 #ifdef HAVE_SCROLLBARS | |
2295 vars_of_scrollbar_mswindows (); | |
2296 #endif | |
2297 #ifdef HAVE_MENUBARS | |
2298 vars_of_menubar_mswindows (); | |
2299 #endif | |
2300 #ifdef HAVE_DIALOGS | |
2301 vars_of_dialog_mswindows (); | |
2302 #endif | |
2303 #endif /* HAVE_MS_WINDOWS */ | |
2304 | |
2305 #ifdef MULE | |
2306 vars_of_mule_ccl (); | |
2307 vars_of_mule_charset (); | |
2308 #endif | |
2309 vars_of_file_coding (); | |
771 | 2310 vars_of_unicode (); |
428 | 2311 #ifdef MULE |
771 | 2312 vars_of_mule_coding (); |
428 | 2313 #ifdef HAVE_WNN |
2314 vars_of_mule_wnn (); | |
2315 #endif | |
2973 | 2316 #if defined(HAVE_CANNA) && !defined (HAVE_SHLIB) |
2317 vars_of_canna_api (); | |
428 | 2318 #endif /* HAVE_CANNA */ |
2319 #endif /* MULE */ | |
2320 | |
2321 #ifdef TOOLTALK | |
2322 vars_of_tooltalk (); | |
2323 #endif | |
2324 | |
2325 #ifdef SUNPRO | |
2326 vars_of_sunpro (); | |
2327 #endif | |
2328 | |
996 | 2329 #if defined (HAVE_LDAP) && !defined (HAVE_SHLIB) |
428 | 2330 vars_of_eldap (); |
2331 #endif | |
2332 | |
996 | 2333 #if defined (HAVE_POSTGRESQL) && !defined (HAVE_SHLIB) |
771 | 2334 vars_of_postgresql (); |
442 | 2335 #endif |
2336 | |
428 | 2337 #ifdef HAVE_GPM |
442 | 2338 vars_of_gpmevent (); |
428 | 2339 #endif |
2367 | 2340 } |
2341 | |
2342 if (!initialized | |
2343 #ifdef PDUMP | |
2344 || !restart | |
2345 #endif | |
2346 ) | |
2347 { | |
2348 /* Now do additional vars_of_*() initialization that happens both | |
2349 at dump time and after pdump load. */ | |
5157
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
2350 reinit_vars_of_alloc (); |
2367 | 2351 reinit_vars_of_buffer (); |
4921
17362f371cc2
add more byte-code assertions and better failure output
Ben Wing <ben@xemacs.org>
parents:
4871
diff
changeset
|
2352 reinit_vars_of_bytecode (); |
2367 | 2353 reinit_vars_of_console (); |
2354 #ifdef DEBUG_XEMACS | |
2355 reinit_vars_of_debug (); | |
2356 #endif | |
2357 reinit_vars_of_device (); | |
2358 reinit_vars_of_eval (); | |
2359 #if defined (HAVE_TTY) && (defined (DEBUG_TTY_EVENT_STREAM) || !defined (HAVE_X_WINDOWS)) | |
2360 reinit_vars_of_event_tty (); | |
2361 #endif | |
2362 reinit_vars_of_event_stream (); | |
2363 reinit_vars_of_events (); | |
2364 reinit_vars_of_file_coding (); | |
2365 reinit_vars_of_fileio (); | |
2366 #ifdef USE_C_FONT_LOCK | |
2367 reinit_vars_of_font_lock (); | |
2368 #endif /* USE_C_FONT_LOCK */ | |
2369 reinit_vars_of_glyphs (); | |
2370 reinit_vars_of_glyphs_widget (); | |
2371 reinit_vars_of_insdel (); | |
2372 reinit_vars_of_lread (); | |
3263 | 2373 #ifndef NEW_GC |
2367 | 2374 reinit_vars_of_lstream (); |
3263 | 2375 #endif /* not NEW_GC */ |
2367 | 2376 reinit_vars_of_minibuf (); |
2377 #ifdef HAVE_SHLIB | |
2378 reinit_vars_of_module (); | |
2379 #endif | |
2380 reinit_vars_of_objects (); | |
2381 reinit_vars_of_print (); | |
2382 reinit_vars_of_search (); | |
2383 reinit_vars_of_text (); | |
2384 reinit_vars_of_undo (); | |
2385 reinit_vars_of_window (); | |
2386 | |
2387 #ifdef HAVE_MS_WINDOWS | |
2388 reinit_vars_of_event_mswindows (); | |
2389 reinit_vars_of_frame_mswindows (); | |
2390 reinit_vars_of_object_mswindows (); | |
2391 #endif | |
2392 | |
2393 #ifdef HAVE_GTK | |
2394 reinit_vars_of_event_gtk (); | |
2395 reinit_vars_of_menubar_gtk (); | |
2396 #endif | |
2397 | |
2398 #ifdef HAVE_X_WINDOWS | |
2399 reinit_vars_of_device_x (); | |
2400 reinit_vars_of_event_Xt (); | |
2401 #ifdef HAVE_SCROLLBARS | |
2402 reinit_vars_of_scrollbar_x (); | |
2403 #endif | |
2404 #ifdef HAVE_MENUBARS | |
2405 reinit_vars_of_menubar_x (); | |
2406 #endif | |
2407 reinit_vars_of_select_x (); | |
2408 #if defined (HAVE_MENUBARS) || defined (HAVE_SCROLLBARS) || defined (HAVE_X_DIALOGS) || defined (HAVE_TOOLBARS) | |
2409 reinit_vars_of_gui_x (); | |
2410 #endif | |
4916
a6c778975d7d
split USE_XFT into HAVE_XFT/USE_XFT
Ben Wing <ben@xemacs.org>
parents:
4871
diff
changeset
|
2411 #ifdef HAVE_XFT |
3354 | 2412 reinit_vars_of_font_mgr (); |
3094 | 2413 #endif |
2367 | 2414 #endif /* HAVE_X_WINDOWS */ |
2415 | |
2416 #ifdef MULE | |
2417 reinit_vars_of_mule_coding (); | |
2418 #endif | |
2419 #if defined (MULE) && defined (HAVE_WNN) | |
2420 reinit_vars_of_mule_wnn (); | |
2421 #endif | |
2422 } | |
2423 | |
2424 if (!initialized) | |
2425 { | |
428 | 2426 /* Now initialize any specifier variables. We do this later |
2427 because it has some dependence on the vars initialized | |
2428 above. | |
2429 | |
2430 These functions should *only* initialize specifier variables, | |
2431 and may make use of the following functions/macros in addition | |
2432 to the ones listed above: | |
2433 | |
2434 DEFVAR_SPECIFIER() | |
2435 Fmake_specifier() | |
2436 set_specifier_fallback() | |
2437 set_specifier_caching() | |
2438 */ | |
2439 | |
2440 specifier_vars_of_glyphs (); | |
863 | 2441 specifier_vars_of_glyphs_widget (); |
428 | 2442 specifier_vars_of_gutter (); |
2443 #ifdef HAVE_MENUBARS | |
2444 specifier_vars_of_menubar (); | |
2445 #endif | |
2446 specifier_vars_of_redisplay (); | |
2447 #ifdef HAVE_SCROLLBARS | |
2448 specifier_vars_of_scrollbar (); | |
2449 #endif | |
2450 #ifdef HAVE_TOOLBARS | |
2451 specifier_vars_of_toolbar (); | |
2452 #endif | |
2453 specifier_vars_of_window (); | |
2454 | |
2455 /* Now comes all the rest of the variables that couldn't | |
2456 be handled above. There may be dependencies on variables | |
2457 initialized above, and dependencies between one complex_vars_() | |
2458 function and another. */ | |
2459 | |
2460 #ifdef MULE | |
814 | 2461 /* This depends on vars initialized in vars_of_unicode(). */ |
428 | 2462 complex_vars_of_mule_charset (); |
2463 #endif | |
814 | 2464 /* This one doesn't depend on anything really, and could go into |
2465 vars_of_(), but lots of lots of code gets called and it's easily | |
2466 possible that it could get changed to require being a | |
2467 complex_vars_of_(), for example if a charset appears anywhere, | |
2468 then we suddenly have dependence on the previous call. */ | |
428 | 2469 complex_vars_of_file_coding (); |
1315 | 2470 #ifdef WIN32_ANY |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4804
diff
changeset
|
2471 /* Define MS-Windows Unicode coding systems */ |
771 | 2472 complex_vars_of_intl_win32 (); |
428 | 2473 #endif |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4804
diff
changeset
|
2474 /* Define UTF-8 coding system */ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4804
diff
changeset
|
2475 complex_vars_of_unicode (); |
428 | 2476 |
2367 | 2477 /* At this point we should be able to do conversion operations. |
2478 We have initialized things to the point that we can create Lisp | |
2479 objects and we have defined the basic coding systems (in the | |
2480 just-previous complex-vars calls). We will in fact do conversion | |
2481 quite soon, e.g. in complex_vars_of_glyphs_x(). */ | |
2482 inhibit_non_essential_conversion_operations = 0; | |
2483 | |
4916
a6c778975d7d
split USE_XFT into HAVE_XFT/USE_XFT
Ben Wing <ben@xemacs.org>
parents:
4871
diff
changeset
|
2484 #ifdef HAVE_XFT |
3094 | 2485 /* This uses coding systems. Must be done before faces are init'ed. */ |
2486 /* not in xft reloaded #3 */ | |
3354 | 2487 complex_vars_of_font_mgr (); |
3094 | 2488 #endif |
2489 | |
771 | 2490 /* Depends on specifiers. */ |
2491 complex_vars_of_faces (); | |
2492 | |
428 | 2493 /* This calls allocate_glyph(), which creates specifiers |
2494 and also relies on a variable (Vthe_nothing_vector) initialized | |
771 | 2495 above. */ |
428 | 2496 complex_vars_of_glyphs (); |
2497 | |
2498 /* These rely on the glyphs just created in the previous function, | |
2499 and call Fadd_spec_to_specifier(), which relies on various | |
2500 variables initialized above. */ | |
462 | 2501 #ifdef HAVE_GTK |
2502 complex_vars_of_glyphs_gtk (); | |
2503 #endif | |
428 | 2504 #ifdef HAVE_X_WINDOWS |
2505 complex_vars_of_glyphs_x (); | |
2506 #endif | |
2507 #ifdef HAVE_MS_WINDOWS | |
2508 complex_vars_of_glyphs_mswindows (); | |
2509 #endif | |
2510 | |
2511 /* This calls Fmake_glyph_internal(). */ | |
2512 #ifdef HAVE_MENUBARS | |
2513 complex_vars_of_menubar (); | |
2514 #endif | |
2515 | |
617 | 2516 #ifdef HAVE_SCROLLBARS |
428 | 2517 /* This calls Fmake_glyph_internal(). */ |
2518 complex_vars_of_scrollbar (); | |
2519 #endif | |
2520 | |
2521 /* This calls allocate_glyph(). */ | |
2522 complex_vars_of_frame (); | |
2523 | |
2524 /* This calls Fcopy_category_table() under Mule, which calls who | |
2525 knows what. */ | |
2526 complex_vars_of_chartab (); | |
2527 | |
826 | 2528 /* This calls Fput_char_table(), which (under Mule) depends on the |
428 | 2529 charsets being initialized. */ |
2530 complex_vars_of_casetab (); | |
2531 | |
2532 /* This calls Fcopy_syntax_table(), which relies on char tables. */ | |
2533 complex_vars_of_syntax (); | |
2534 | |
2535 /* This initializes buffer-local variables, sets things up so | |
2536 that buffers can be created, and creates a couple of basic | |
2537 buffers. This depends on Vstandard_syntax_table and | |
2538 Vstandard_category_table (initialized in the previous | |
2539 functions), as well as a whole horde of variables that may | |
2540 have been initialized above. */ | |
2541 complex_vars_of_buffer (); | |
2542 | |
2543 /* This initializes console-local variables. */ | |
2544 complex_vars_of_console (); | |
2545 | |
2546 /* This creates a couple more buffers, and depends on the | |
2547 previous function. */ | |
2548 complex_vars_of_minibuf (); | |
2549 | |
2550 /* These two might call Ffile_name_as_directory(), which | |
2551 might depend on all sorts of things; I'm not sure. */ | |
2552 complex_vars_of_emacs (); | |
2553 | |
3092 | 2554 complex_vars_of_gc (); |
2555 | |
428 | 2556 /* This creates a couple of basic keymaps and depends on Lisp |
2557 hash tables and Ffset() (both of which depend on some variables | |
2558 initialized in the vars_of_*() section) and possibly other | |
2559 stuff. */ | |
2560 complex_vars_of_keymap (); | |
2561 | |
2562 #ifdef ERROR_CHECK_GC | |
2563 { | |
2564 extern int always_gc; | |
2565 if (always_gc) /* purification debugging hack */ | |
3092 | 2566 #ifdef NEW_GC |
2567 gc_full (); | |
2568 #else /* not NEW_GC */ | |
428 | 2569 garbage_collect_1 (); |
3092 | 2570 #endif /* not NEW_GC */ |
428 | 2571 } |
2572 #endif | |
1204 | 2573 } |
2367 | 2574 else |
2575 { | |
2576 /* We are at the equivalent place where we reset this in the | |
2577 non-initialized case. */ | |
2578 inhibit_non_essential_conversion_operations = 0; | |
1204 | 2579 |
428 | 2580 #ifdef PDUMP |
2367 | 2581 if (!restart) /* after successful pdump_load() |
2582 (note, we are inside ifdef PDUMP) */ | |
2583 { | |
2584 reinit_complex_vars_of_buffer_runtime_only (); | |
2585 reinit_complex_vars_of_console_runtime_only (); | |
2586 reinit_complex_vars_of_minibuf (); | |
2587 } | |
2588 #endif /* PDUMP */ | |
1204 | 2589 } |
2367 | 2590 |
2591 if (initialized) | |
2592 init_eval_semi_early (); | |
428 | 2593 |
2594 /* CONGRATULATIONS!!! We have successfully initialized the Lisp | |
2595 engine. */ | |
2596 | |
2597 /* Now do further initialization/setup of stuff that is not needed by the | |
2598 syms_of_() routines. This involves stuff that only is enabled in | |
2599 an interactive run (redisplay, user input, etc.) and stuff that is | |
2600 not needed until we start loading Lisp code (the reader). A lot | |
2601 of this stuff involves querying the current environment and needs | |
771 | 2602 to be done both at dump time and at run time. Some will be done |
2367 | 2603 only at run time, by querying the `initialized' variable. |
2604 | |
2605 The ordering of these functions is critical, especially the early ones, | |
2606 where there is typically a dependency from each to the previous. | |
2607 */ | |
771 | 2608 |
1315 | 2609 #ifdef WIN32_ANY |
771 | 2610 init_intl_win32 (); /* Under Windows, determine whether we use Unicode |
2611 or ANSI to call the system routines -- i.e. | |
2612 determine what the coding system `mswindows-tstr' | |
2613 is aliased to */ | |
2614 #endif | |
2615 init_buffer_1 (); /* Create *scratch* buffer; init_intl() is going to | |
2616 call Lisp code (the very first code we call), | |
2617 and needs a current buffer */ | |
2618 #ifdef MULE | |
2619 init_intl (); /* Figure out the locale and set native and | |
2620 file-name coding systems, initialize the Unicode tables | |
2621 so that we will be able to process non-ASCII from here | |
2622 on out! */ | |
428 | 2623 #endif |
2624 | |
814 | 2625 init_xemacs_process (); /* Set up the process environment (so that |
2626 egetenv works), the basic directory variables | |
2627 (exec-directory and so on), and stuff related | |
2628 to subprocesses. This should be first because | |
2629 many of the functions below call egetenv() to | |
2630 get environment variables. */ | |
771 | 2631 |
2632 #ifdef WIN32_NATIVE | |
2633 /* | |
2634 * For Win32, call init_environment() to properly enter environment/registry | |
2635 * variables into Vprocess_environment. | |
2636 */ | |
814 | 2637 init_mswindows_environment (); |
771 | 2638 #endif |
2639 | |
2640 init_initial_directory (); /* get the directory to use for the | |
2641 "*scratch*" buffer, etc. */ | |
2642 | |
1983 | 2643 #ifdef WITH_NUMBER_TYPES |
2644 /* Set up bignums, ratios, bigfloats, complex numbers. | |
2645 This must be done before the Lisp reader is set up. */ | |
2646 init_number (); | |
2647 #endif | |
2648 | |
428 | 2649 init_lread (); /* Set up the Lisp reader. */ |
2367 | 2650 init_cmdargs (argc, argv, skip_args); /* Create list Vcommand_line_args */ |
771 | 2651 init_buffer_2 (); /* Set default directory of *scratch* buffer */ |
428 | 2652 |
442 | 2653 #ifdef WIN32_NATIVE |
814 | 2654 init_nt (); |
771 | 2655 init_select_mswindows (); |
428 | 2656 #endif |
2657 | |
2658 init_redisplay (); /* Determine terminal type. | |
2659 init_sys_modes uses results */ | |
438 | 2660 init_frame (); |
428 | 2661 init_event_stream (); /* Set up so we can get user input. */ |
2662 init_macros (); /* set up so we can run macros. */ | |
2663 init_editfns (); /* Determine the name of the user we're running as */ | |
2664 #ifdef SUNPRO | |
2665 init_sunpro (); /* Set up Sunpro usage tracking */ | |
2666 #endif | |
1315 | 2667 #ifdef WIN32_ANY |
442 | 2668 init_win32 (); |
2669 #endif | |
428 | 2670 #if defined (HAVE_NATIVE_SOUND) && defined (hp9000s800) |
2671 init_hpplay (); | |
2672 #endif | |
996 | 2673 #if defined (HAVE_POSTGRESQL) && !defined (HAVE_SHLIB) |
771 | 2674 /* Set some values taken from environment variables */ |
2675 init_postgresql_from_environment (); | |
2676 #endif | |
428 | 2677 #ifdef HAVE_TTY |
2678 init_device_tty (); | |
2679 #endif | |
442 | 2680 init_console_stream (restart); /* Create the first console */ |
428 | 2681 |
2682 /* try to get the actual pathname of the exec file we are running */ | |
2683 if (!restart) | |
771 | 2684 { |
2685 Vinvocation_name = Fcar (Vcommand_line_args); | |
1303 | 2686 if (XSTRING_DATA (Vinvocation_name)[0] == '-') |
771 | 2687 { |
2688 /* XEmacs as a login shell, oh goody! */ | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
2689 Vinvocation_name = build_istring (egetenv ("SHELL")); |
771 | 2690 } |
428 | 2691 Vinvocation_directory = Vinvocation_name; |
2692 | |
771 | 2693 if (!NILP (Ffile_name_directory (Vinvocation_name))) |
2694 { | |
2695 /* invocation-name includes a directory component -- presumably it | |
2696 is relative to cwd, not $PATH */ | |
2697 Vinvocation_directory = Fexpand_file_name (Vinvocation_name, | |
2698 Qnil); | |
2699 Vinvocation_path = Qnil; | |
2700 } | |
2701 else | |
2702 { | |
2703 Vinvocation_path = split_env_path ("PATH", NULL); | |
2704 locate_file (Vinvocation_path, Vinvocation_name, | |
2705 Vlisp_EXEC_SUFFIXES, | |
2706 &Vinvocation_directory, X_OK); | |
2707 } | |
2708 | |
2709 if (NILP (Vinvocation_directory)) | |
2710 Vinvocation_directory = Vinvocation_name; | |
2711 | |
2712 Vinvocation_name = Ffile_name_nondirectory (Vinvocation_directory); | |
2713 Vinvocation_directory = Ffile_name_directory (Vinvocation_directory); | |
2714 } | |
428 | 2715 |
2716 #if defined (LOCALTIME_CACHE) && defined (HAVE_TZSET) | |
2717 /* sun's localtime() has a bug. it caches the value of the time | |
2718 zone rather than looking it up every time. Since localtime() is | |
2719 called to bolt the undumping time into the undumped emacs, this | |
2720 results in localtime() ignoring the TZ environment variable. | |
2721 This flushes the new TZ value into localtime(). */ | |
2722 tzset (); | |
2723 #endif /* LOCALTIME_CACHE and TZSET */ | |
2724 | |
2725 load_me = Qnil; | |
2726 if (!initialized) | |
2727 { | |
2728 /* Handle -l loadup-and-dump, args passed by Makefile. */ | |
2367 | 2729 if (argc > 2 + skip_args && |
2730 !wext_strcmp_ascii (argv[1 + skip_args], "-l")) | |
2731 load_me = build_wext_string (argv[2 + skip_args], | |
2732 Qcommand_argument_encoding); | |
428 | 2733 } |
2734 | |
2735 #ifdef QUANTIFY | |
2736 if (initialized) | |
2737 quantify_start_recording_data (); | |
2738 #endif /* QUANTIFY */ | |
2739 | |
2740 initialized = 1; | |
2741 | |
2742 /* This never returns. */ | |
2743 initial_command_loop (load_me); | |
2744 /* NOTREACHED */ | |
2745 } | |
2746 | |
2747 | |
2748 /* Sort the args so we can find the most important ones | |
2749 at the beginning of argv. */ | |
2750 | |
2751 /* First, here's a table of all the standard options. */ | |
2752 | |
2753 struct standard_args | |
2754 { | |
2367 | 2755 const Ascbyte *name; |
2756 const Ascbyte *longname; | |
428 | 2757 int priority; |
2758 int nargs; | |
2759 }; | |
2760 | |
442 | 2761 static const struct standard_args standard_args[] = |
428 | 2762 { |
776 | 2763 /* Handled by main_1 above: Each must have its own priority and must be |
2764 in the order mentioned in main_1. */ | |
442 | 2765 { "-sd", "--show-dump-id", 105, 0 }, |
2766 { "-nd", "--no-dump-file", 95, 0 }, | |
826 | 2767 { "-batch", "--batch", 88, 0 }, |
4448
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
2768 { "-script", "--script", 89, 1 }, |
771 | 2769 #ifdef WIN32_NATIVE |
826 | 2770 { "-mswindows-termination-handle", 0, 84, 1 }, |
771 | 2771 { "-nuni", "--no-unicode-lib-calls", 83, 0 }, |
2772 #endif /* WIN32_NATIVE */ | |
428 | 2773 { "-debug-paths", "--debug-paths", 82, 0 }, |
776 | 2774 { "-no-packages", "--no-packages", 81, 0 }, |
2775 { "-no-early-packages", "--no-early-packages", 80, 0 }, | |
2776 { "-no-site-modules", "--no-site-modules", 78, 0 }, | |
2777 { "-vanilla", "--vanilla", 76, 0 }, | |
2778 { "-no-autoloads", "--no-autoloads", 74, 0 }, | |
2779 { "-help", "--help", 72, 0 }, | |
2780 { "-version", "--version", 70, 0 }, | |
2781 { "-V", 0, 68, 0 }, | |
1315 | 2782 { "-nw", "--no-windows", 66, 0 }, |
2783 { "-tty", "--use-tty", 65, 0 }, | |
2784 { "-x", "--use-x", 64, 0 }, | |
2785 { "-gtk", "--use-gtk", 63, 0 }, | |
2786 { "-gnome", "--use-gnome", 62, 0 }, | |
2787 { "-msw", "--use-ms-windows", 61, 0 }, | |
2788 { "-t", "--terminal", 58, 1 }, | |
2789 { "-d", "--display", 57, 1 }, | |
2790 { "-display", 0, 56, 1 }, | |
428 | 2791 |
2792 /* Handled by command-line-early in startup.el: */ | |
2793 { "-q", "--no-init-file", 50, 0 }, | |
2794 { "-no-init-file", 0, 50, 0 }, | |
776 | 2795 { "-no-site-file", "--no-site-file", 50, 0 }, |
2796 { "-unmapped", "--unmapped", 50, 0 }, | |
2797 { "-u", "--user", 50, 1 }, | |
2798 { "-user", 0, 50, 1 }, | |
2799 { "-user-init-file", "--user-init-file", 50, 1 }, | |
2800 { "-user-init-directory", "--user-init-directory", 50, 1 }, | |
2801 { "-debug-init", "--debug-init", 50, 0 }, | |
428 | 2802 |
2803 /* Xt options: */ | |
2804 { "-i", "--icon-type", 15, 0 }, | |
2805 { "-itype", 0, 15, 0 }, | |
2806 { "-iconic", "--iconic", 15, 0 }, | |
2807 { "-bg", "--background-color", 10, 1 }, | |
2808 { "-background", 0, 10, 1 }, | |
2809 { "-fg", "--foreground-color", 10, 1 }, | |
2810 { "-foreground", 0, 10, 1 }, | |
2811 { "-bd", "--border-color", 10, 1 }, | |
2812 { "-bw", "--border-width", 10, 1 }, | |
2813 { "-ib", "--internal-border", 10, 1 }, | |
2814 { "-ms", "--mouse-color", 10, 1 }, | |
2815 { "-cr", "--cursor-color", 10, 1 }, | |
2816 { "-fn", "--font", 10, 1 }, | |
2817 { "-font", 0, 10, 1 }, | |
2818 { "-g", "--geometry", 10, 1 }, | |
2819 { "-geometry", 0, 10, 1 }, | |
2820 { "-T", "--title", 10, 1 }, | |
2821 { "-title", 0, 10, 1 }, | |
2822 { "-name", "--name", 10, 1 }, | |
2823 { "-xrm", "--xrm", 10, 1 }, | |
2824 { "-r", "--reverse-video", 5, 0 }, | |
2825 { "-rv", 0, 5, 0 }, | |
2826 { "-reverse", 0, 5, 0 }, | |
2827 { "-hb", "--horizontal-scroll-bars", 5, 0 }, | |
2828 { "-vb", "--vertical-scroll-bars", 5, 0 }, | |
2829 | |
776 | 2830 { "-eol", "--enable-eol-detection", 2, 0 }, |
2831 { "-enable-eol-detection", 0, 2, 0 }, | |
428 | 2832 /* These have the same priority as ordinary file name args, |
2833 so they are not reordered with respect to those. */ | |
2834 { "-L", "--directory", 0, 1 }, | |
2835 { "-directory", 0, 0, 1 }, | |
2836 { "-l", "--load", 0, 1 }, | |
2837 { "-load", 0, 0, 1 }, | |
2838 { "-f", "--funcall", 0, 1 }, | |
2839 { "-funcall", 0, 0, 1 }, | |
2840 { "-eval", "--eval", 0, 1 }, | |
2841 { "-insert", "--insert", 0, 1 }, | |
2842 /* This should be processed after ordinary file name args and the like. */ | |
2843 { "-kill", "--kill", -10, 0 }, | |
2844 }; | |
2845 | |
2846 /* Reorder the elements of ARGV (assumed to have ARGC elements) | |
2847 so that the highest priority ones come first. | |
2848 Do not change the order of elements of equal priority. | |
2849 If an option takes an argument, keep it and its argument together. */ | |
2850 | |
2851 static void | |
2367 | 2852 sort_args (int argc, Wexttext **argv) |
428 | 2853 { |
2367 | 2854 Wexttext **new_argv = xnew_array (Wexttext *, argc); |
428 | 2855 /* For each element of argv, |
2856 the corresponding element of options is: | |
2857 0 for an option that takes no arguments, | |
2858 1 for an option that takes one argument, etc. | |
2859 -1 for an ordinary non-option argument. */ | |
2860 int *options = xnew_array (int, argc); | |
2861 int *priority = xnew_array (int, argc); | |
2862 int to = 1; | |
2863 int from; | |
2864 int i; | |
2865 int end_of_options_p = 0; | |
2866 | |
2867 /* Categorize all the options, | |
2868 and figure out which argv elts are option arguments. */ | |
2869 for (from = 1; from < argc; from++) | |
2870 { | |
2871 options[from] = -1; | |
2872 priority[from] = 0; | |
2873 /* Pseudo options "--" and "run-temacs" indicate end of options */ | |
2367 | 2874 if (!wext_strcmp_ascii (argv[from], "--") || |
2875 !wext_strcmp_ascii (argv[from], "run-temacs")) | |
428 | 2876 end_of_options_p = 1; |
2877 if (!end_of_options_p && argv[from][0] == '-') | |
2878 { | |
2367 | 2879 int match; |
2880 Charcount thislen; | |
2881 Wexttext *equals; | |
428 | 2882 |
2883 /* Look for a match with a known old-fashioned option. */ | |
2884 for (i = 0; i < countof (standard_args); i++) | |
2367 | 2885 if (!wext_strcmp_ascii (argv[from], standard_args[i].name)) |
428 | 2886 { |
2887 options[from] = standard_args[i].nargs; | |
2888 priority[from] = standard_args[i].priority; | |
2889 if (from + standard_args[i].nargs >= argc) | |
2367 | 2890 fatal ("Option `%s' requires an argument\n", |
2891 WEXTTEXT_TO_8_BIT (argv[from])); | |
428 | 2892 from += standard_args[i].nargs; |
2893 goto done; | |
2894 } | |
2895 | |
2896 /* Look for a match with a known long option. | |
2897 MATCH is -1 if no match so far, -2 if two or more matches so far, | |
2898 >= 0 (the table index of the match) if just one match so far. */ | |
2899 if (argv[from][1] == '-') | |
2900 { | |
2901 match = -1; | |
2367 | 2902 thislen = wext_strlen (argv[from]); |
2903 equals = wext_strchr (argv[from], '='); | |
428 | 2904 if (equals != 0) |
2905 thislen = equals - argv[from]; | |
2906 | |
2907 for (i = 0; i < countof (standard_args); i++) | |
2908 if (standard_args[i].longname | |
2367 | 2909 && !wext_strncmp_ascii (argv[from], |
2910 standard_args[i].longname, | |
2911 thislen)) | |
428 | 2912 { |
2913 if (match == -1) | |
2914 match = i; | |
2915 else | |
2916 match = -2; | |
2917 } | |
2918 | |
2919 /* If we found exactly one match, use that. */ | |
2920 if (match >= 0) | |
2921 { | |
2922 options[from] = standard_args[match].nargs; | |
2923 priority[from] = standard_args[match].priority; | |
2924 /* If --OPTION=VALUE syntax is used, | |
2925 this option uses just one argv element. */ | |
2926 if (equals != 0) | |
2927 options[from] = 0; | |
2928 if (from + options[from] >= argc) | |
2367 | 2929 fatal ("Option `%s' requires an argument\n", |
2930 WEXTTEXT_TO_8_BIT (argv[from])); | |
428 | 2931 from += options[from]; |
2932 } | |
2933 } | |
2934 done: ; | |
2935 } | |
2936 } | |
2937 | |
2938 /* Copy the arguments, in order of decreasing priority, to NEW_ARGV. */ | |
2939 new_argv[0] = argv[0]; | |
2940 while (to < argc) | |
2941 { | |
2942 int best = -1; | |
2943 int best_priority = -9999; | |
2944 | |
2945 /* Find the highest priority remaining option. | |
2946 If several have equal priority, take the first of them. */ | |
2947 for (from = 1; from < argc; from++) | |
2948 { | |
2949 if (argv[from] != 0 && priority[from] > best_priority) | |
2950 { | |
2951 best_priority = priority[from]; | |
2952 best = from; | |
2953 } | |
2954 /* Skip option arguments--they are tied to the options. */ | |
2955 if (options[from] > 0) | |
2956 from += options[from]; | |
2957 } | |
2958 | |
5050
6f2158fa75ed
Fix quick-build, use asserts() in place of ABORT()
Ben Wing <ben@xemacs.org>
parents:
5023
diff
changeset
|
2959 assert (best >= 0); |
428 | 2960 |
1315 | 2961 /* Copy the highest priority remaining option, with its args, to |
2962 NEW_ARGV. */ | |
428 | 2963 new_argv[to++] = argv[best]; |
2964 for (i = 0; i < options[best]; i++) | |
2965 new_argv[to++] = argv[best + i + 1]; | |
2966 | |
2967 /* Clear out this option in ARGV. */ | |
2968 argv[best] = 0; | |
2969 for (i = 0; i < options[best]; i++) | |
2970 argv[best + i + 1] = 0; | |
2971 } | |
2972 | |
2367 | 2973 memcpy (argv, new_argv, sizeof (Wexttext *) * argc); |
4976
16112448d484
Rename xfree(FOO, TYPE) -> xfree(FOO)
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
2974 xfree (new_argv); |
16112448d484
Rename xfree(FOO, TYPE) -> xfree(FOO)
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
2975 xfree (options); |
16112448d484
Rename xfree(FOO, TYPE) -> xfree(FOO)
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
2976 xfree (priority); |
428 | 2977 } |
2978 | |
2979 DEFUN ("running-temacs-p", Frunning_temacs_p, 0, 0, 0, /* | |
2980 True if running temacs. This means we are in the dumping stage. | |
2981 This is false during normal execution of the `xemacs' program, and | |
2982 becomes false once `run-emacs-from-temacs' is run. | |
2983 */ | |
2984 ()) | |
2985 { | |
2986 return run_temacs_argc >= 0 ? Qt : Qnil; | |
2987 } | |
2988 | |
1315 | 2989 DEFUN ("emacs-run-status", Femacs_run_status, 0, 0, 0, /* |
2990 Plist of values indicating the current run status of this XEmacs. | |
2991 Currently defined values: | |
2992 | |
2993 `temacs' | |
2994 If non-nil, we are running a "raw temacs" (no dump data is present | |
2995 and `run-emacs-from-temacs' not called). (same as `running-temacs-p') | |
2996 | |
2997 `dumping' | |
2998 If non-nil, we are in the process of creating dump data. (same as | |
2999 `purify-flag') | |
3000 | |
3001 `restarted' | |
3002 If non-nil, `run-emacs-from-temacs' was called. | |
3003 | |
3004 `pdump' | |
3005 If non-nil, we were compiled with pdump (portable dumping) support. | |
3006 | |
3007 `batch' | |
3008 If non-nil, we are running non-interactively. (same as `noninteractive') | |
3009 */ | |
3010 ()) | |
3011 { | |
3012 Lisp_Object plist = Qnil; | |
3013 | |
3014 #define ADD_PLIST(key, val) plist = Fcons (val, Fcons (key, plist)) | |
3015 if (run_temacs_argc >= 0) | |
3016 ADD_PLIST (Qtemacs, Qt); | |
3017 if (purify_flag) | |
3018 ADD_PLIST (Qdumping, Qt); | |
3019 if (run_temacs_argc == -2) | |
3020 ADD_PLIST (Qrestarted, Qt); | |
3021 #ifdef PDUMP | |
3022 ADD_PLIST (Qpdump, Qt); | |
3023 #endif | |
3024 if (noninteractive) | |
3025 ADD_PLIST (Qbatch, Qt); | |
3026 | |
3027 #undef ADD_PLIST | |
3028 return Fnreverse (plist); | |
3029 } | |
3030 | |
2268 | 3031 DEFUN_NORETURN ("run-emacs-from-temacs", Frun_emacs_from_temacs, 0, MANY, 0, /* |
428 | 3032 Do not call this. It will reinitialize your XEmacs. You'll be sorry. |
4693
80cd90837ac5
Add argument information to remaining MANY or UNEVALLED C subrs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4528
diff
changeset
|
3033 |
80cd90837ac5
Add argument information to remaining MANY or UNEVALLED C subrs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4528
diff
changeset
|
3034 arguments: (&rest ARGS) |
428 | 3035 */ |
3036 /* If this function is called from startup.el, it will be possible to run | |
4477
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4458
diff
changeset
|
3037 temacs as an editor using `temacs -batch -l ../lisp/loadup.el |
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4458
diff
changeset
|
3038 run-temacs', instead of having to dump an emacs and then run that (when |
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4458
diff
changeset
|
3039 debugging emacs itself, this can be much faster)). [Actually, the speed |
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4458
diff
changeset
|
3040 difference isn't that much as long as your filesystem is local, and you |
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4458
diff
changeset
|
3041 don't end up with a dumped version in case you want to rerun it. This |
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4458
diff
changeset
|
3042 function is most useful when used as part of the `make all-elc' |
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4458
diff
changeset
|
3043 command. --ben] This will "restart" emacs with the specified command-line |
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4458
diff
changeset
|
3044 arguments. |
428 | 3045 |
3046 Martin thinks this function is most useful when using debugging | |
3047 tools like Purify or tcov that get confused by XEmacs' dumping. */ | |
3048 (int nargs, Lisp_Object *args)) | |
3049 { | |
2367 | 3050 int i; |
428 | 3051 |
3092 | 3052 #ifdef NEW_GC |
3053 if (gc_in_progress) gc_full (); | |
3054 #else /* not NEW_GC */ | |
428 | 3055 assert (!gc_in_progress); |
3092 | 3056 #endif /* not NEW_GC */ |
428 | 3057 |
3058 if (run_temacs_argc < 0) | |
2367 | 3059 invalid_operation ("I've lost my temacs-hood", Qunbound); |
3060 | |
3061 run_temacs_argc = nargs + 1; | |
3062 run_temacs_argv = xnew_array (Wexttext *, nargs + 2); | |
3063 | |
4981
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
3064 run_temacs_argv[0] = |
5000
44d7bde26046
fix compile errors, fix revert-buffer bug on binary/Latin 1 files, Mule-ize some files
Ben Wing <ben@xemacs.org>
parents:
4982
diff
changeset
|
3065 (Wexttext *) LISP_STRING_TO_EXTERNAL_MALLOC (Fcar (Vcommand_line_args), |
44d7bde26046
fix compile errors, fix revert-buffer bug on binary/Latin 1 files, Mule-ize some files
Ben Wing <ben@xemacs.org>
parents:
4982
diff
changeset
|
3066 Qcommand_argument_encoding); |
2367 | 3067 for (i = 0; i < nargs; i++) |
428 | 3068 { |
2367 | 3069 CHECK_STRING (args[i]); |
3070 | |
4981
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
3071 run_temacs_argv[i + 1] = |
5000
44d7bde26046
fix compile errors, fix revert-buffer bug on binary/Latin 1 files, Mule-ize some files
Ben Wing <ben@xemacs.org>
parents:
4982
diff
changeset
|
3072 (Wexttext *) |
4981
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
3073 LISP_STRING_TO_EXTERNAL_MALLOC (args[i], Qcommand_argument_encoding); |
428 | 3074 } |
2367 | 3075 run_temacs_argv[nargs + 1] = 0; |
3076 | |
428 | 3077 catchlist = NULL; /* Important! Otherwise free_cons() calls in |
3078 condition_case_unwind() may lead to GC death. */ | |
771 | 3079 unbind_to (0); /* this closes loadup.el */ |
428 | 3080 purify_flag = 0; |
1303 | 3081 #if defined (HEAP_IN_DATA) && !defined (PDUMP) |
428 | 3082 report_sheap_usage (0); |
3083 #endif | |
1315 | 3084 |
3085 /* run-temacs usually only occurs as a result of building, and in all such | |
3086 cases we want a backtrace, even if it occurs very early. */ | |
3087 if (NILP (Vstack_trace_on_error)) | |
3088 Vstack_trace_on_error = Qt; | |
3089 | |
428 | 3090 LONGJMP (run_temacs_catch, 1); |
1204 | 3091 RETURN_NOT_REACHED (Qnil); |
428 | 3092 } |
3093 | |
3094 /* ARGSUSED */ | |
3095 int | |
2367 | 3096 main (int argc, Extbyte **argv, Extbyte **UNUSED (envp)) |
428 | 3097 { |
442 | 3098 |
3099 #ifdef _MSC_VER | |
3100 /* Under VC++, access violations and the like are not sent through | |
3101 the standard signal() mechanism. Rather, they need to be handled | |
3102 using the Microsoft "structured exception handling" mechanism, | |
3103 which vaguely resembles the C++ mechanisms. */ | |
3104 __try | |
3105 { | |
3106 #endif | |
3107 | |
428 | 3108 int volatile vol_argc = argc; |
2367 | 3109 Wexttext ** volatile vol_argv; |
428 | 3110 /* This is hairy. We need to compute where the XEmacs binary was invoked |
3111 from because temacs initialization requires it to find the lisp | |
3112 directories. The code that recomputes the path is guarded by the | |
3113 restarted flag. There are three possible paths I've found so far | |
3114 through this: | |
3115 | |
3116 temacs -- When running temacs for basic build stuff, the first main_1 | |
3117 will be the only one invoked. It must compute the path else there | |
3118 will be a very ugly bomb in startup.el (can't find obvious location | |
3119 for doc-directory data-directory, etc.). | |
3120 | |
3121 temacs w/ run-temacs on the command line -- This is run to bytecompile | |
3122 all the out of date dumped lisp. It will execute both of the main_1 | |
3123 calls and the second one must not touch the first computation because | |
3124 argc/argv are hosed the second time through. | |
3125 | |
3126 xemacs -- Only the second main_1 is executed. The invocation path must | |
3127 computed but this only matters when running in place or when running | |
3128 as a login shell. | |
3129 | |
3130 As a bonus for straightening this out, XEmacs can now be run in place | |
3131 as a login shell. This never used to work. | |
3132 | |
3133 As another bonus, we can now guarantee that | |
3134 (concat invocation-directory invocation-name) contains the filename | |
3135 of the XEmacs binary we are running. This can now be used in a | |
3136 definite test for out of date dumped files. -slb */ | |
3137 int restarted = 0; | |
3138 #ifdef QUANTIFY | |
3139 quantify_stop_recording_data (); | |
3140 quantify_clear_data (); | |
3141 #endif /* QUANTIFY */ | |
3142 | |
2367 | 3143 inhibit_non_essential_conversion_operations = 1; |
428 | 3144 suppress_early_error_handler_backtrace = 0; |
3145 lim_data = 0; /* force reinitialization of this variable */ | |
3146 | |
3147 /* Lisp_Object must fit in a word; check VALBITS and GCTYPEBITS */ | |
3148 assert (sizeof (Lisp_Object) == sizeof (void *)); | |
3149 | |
3150 #ifdef LINUX_SBRK_BUG | |
3151 sbrk (1); | |
3152 #endif | |
3153 | |
2367 | 3154 #ifdef WIN32_ANY |
3155 /* Figure out which version we're running so XEUNICODE_P works */ | |
3156 init_win32_very_very_early (); | |
3157 #endif | |
3158 | |
3159 #ifdef WIN32_NATIVE | |
3160 #if 0 | |
3161 /* !!#### We should be doing something like this, but this messes up | |
3162 globbing. I tried using wmain() and linking with WSETARGV, but the | |
3163 routines for WSETARGV are left out of MSVCRT.DLL! | |
3164 | |
3165 To fix this we need to copy the argument-expanding and globbing code | |
3166 from Cygwin and Unicode-ize it. Yuck. */ | |
3167 if (XEUNICODE_P) | |
3168 /* Set up Unicode versions of the arguments. */ | |
3169 vol_argv = CommandLineToArgvW (GetCommandLineW (), &vol_argc); | |
3170 #else | |
3171 { | |
3172 int i; | |
3173 | |
3174 vol_argv = alloca_array (Wexttext *, argc); | |
3175 for (i = 0; i < argc; i++) | |
3176 vol_argv[i] = MULTIBYTE_TO_WEXTTEXT (argv[i]); | |
3177 } | |
3178 #endif | |
3179 #else | |
3180 vol_argv = (Wexttext **) argv; | |
3181 #endif /* WIN32_NATIVE */ | |
3182 | |
428 | 3183 if (!initialized) |
3184 { | |
3185 #ifdef DOUG_LEA_MALLOC | |
3186 mallopt (M_MMAP_MAX, 0); | |
3187 #endif | |
3188 run_temacs_argc = 0; | |
3189 if (! SETJMP (run_temacs_catch)) | |
3190 { | |
2367 | 3191 main_1 (vol_argc, vol_argv, NULL, 0); |
428 | 3192 } |
3193 /* run-emacs-from-temacs called */ | |
3194 restarted = 1; | |
3195 vol_argc = run_temacs_argc; | |
3196 vol_argv = run_temacs_argv; | |
3197 #ifdef _SCO_DS | |
3198 /* This makes absolutely no sense to anyone involved. There are | |
3199 several people using this stuff. We've compared versions on | |
3200 everything we can think of. We can find no difference. | |
3201 However, on both my systems environ is a plain old global | |
3202 variable initialized to zero. _environ is the one that | |
3203 contains pointers to the actual environment. | |
3204 | |
3205 Since we can't figure out the difference (and we're hours | |
3206 away from a release), this takes a very cowardly approach and | |
3207 is bracketed with both a system specific preprocessor test | |
3208 and a runtime "do you have this problem" test | |
3209 | |
3210 06/20/96 robertl@dgii.com */ | |
3211 { | |
2367 | 3212 extern Extbyte *_environ; |
3213 if (environ == NULL) | |
1315 | 3214 environ = _environ; |
428 | 3215 } |
3216 #endif /* _SCO_DS */ | |
3217 } | |
456 | 3218 #if defined (RUN_TIME_REMAP) && ! defined (PDUMP) |
428 | 3219 else |
3220 /* obviously no-one uses this because where it was before initialized was | |
3221 *always* true */ | |
3222 run_time_remap (argv[0]); | |
3223 #endif | |
3224 | |
3225 #ifdef DOUG_LEA_MALLOC | |
3226 if (initialized && (malloc_state_ptr != NULL)) | |
3227 { | |
3228 int rc = malloc_set_state (malloc_state_ptr); | |
3229 if (rc != 0) | |
3230 { | |
442 | 3231 stderr_out ("malloc_set_state failed, rc = %d\n", rc); |
2500 | 3232 ABORT (); |
428 | 3233 } |
3234 #if 0 | |
3235 free (malloc_state_ptr); | |
3236 #endif | |
3237 /* mmap works in glibc-2.1, glibc-2.0 (Non-Mule only) and Linux libc5 */ | |
1303 | 3238 #if (defined (__GLIBC__) && __GLIBC_MINOR__ >= 1) || \ |
3239 defined (_NO_MALLOC_WARNING_) || \ | |
3240 (defined (__GLIBC__) && __GLIBC_MINOR__ < 1 && !defined (MULE)) || \ | |
3241 defined (DEBUG_DOUG_LEA_MALLOC) | |
428 | 3242 mallopt (M_MMAP_MAX, 64); |
3243 #endif | |
3244 #ifdef REL_ALLOC | |
3245 r_alloc_reinit (); | |
3246 #endif | |
3247 } | |
3248 #endif /* DOUG_LEA_MALLOC */ | |
3249 | |
1315 | 3250 run_temacs_argc = -2; |
428 | 3251 |
2367 | 3252 main_1 (vol_argc, vol_argv, NULL, restarted); |
442 | 3253 |
3254 #ifdef _MSC_VER | |
3255 } | |
3256 /* VC++ documentation says that | |
3257 GetExceptionCode() cannot be called inside the filter itself. */ | |
3258 __except (mswindows_handle_hardware_exceptions (GetExceptionCode ())) {} | |
3259 #endif | |
3260 | |
1204 | 3261 RETURN_NOT_REACHED (0); |
428 | 3262 } |
3263 | |
3264 | |
771 | 3265 /************************************************************************/ |
3266 /* dumping XEmacs (to a new EXE file) */ | |
3267 /************************************************************************/ | |
3268 | |
1204 | 3269 #if !defined (PDUMP) || !defined (SYSTEM_MALLOC) |
2367 | 3270 extern Rawbyte my_edata[]; |
428 | 3271 #endif |
771 | 3272 |
3273 extern void disable_free_hook (void); | |
3274 | |
3275 DEFUN ("dump-emacs", Fdump_emacs, 2, 2, 0, /* | |
3276 Dump current state of XEmacs into executable file FILENAME. | |
3277 Take symbols from SYMFILE (presumably the file you executed to run XEmacs). | |
3278 This is used in the file `loadup.el' when building XEmacs. | |
3279 | |
3280 Remember to set `command-line-processed' to nil before dumping | |
3281 if you want the dumped XEmacs to process its command line | |
3282 and announce itself normally when it is run. | |
428 | 3283 */ |
771 | 3284 (filename, symfile)) |
428 | 3285 { |
3286 /* This function can GC */ | |
771 | 3287 struct gcpro gcpro1, gcpro2; |
3288 int opurify; | |
3289 | |
3290 GCPRO2 (filename, symfile); | |
3291 | |
3292 #ifdef FREE_CHECKING | |
3293 Freally_free (Qnil); | |
3294 | |
3295 /* When we're dumping, we can't use the debugging free() */ | |
3296 disable_free_hook (); | |
3297 #endif | |
3298 | |
3299 CHECK_STRING (filename); | |
3300 filename = Fexpand_file_name (filename, Qnil); | |
3301 if (!NILP (symfile)) | |
428 | 3302 { |
771 | 3303 CHECK_STRING (symfile); |
3304 if (XSTRING_LENGTH (symfile) > 0) | |
3305 symfile = Fexpand_file_name (symfile, Qnil); | |
3306 else | |
3307 symfile = Qnil; | |
428 | 3308 } |
3309 | |
771 | 3310 opurify = purify_flag; |
3311 purify_flag = 0; | |
3312 | |
1303 | 3313 #if defined (HEAP_IN_DATA) && !defined (PDUMP) |
771 | 3314 report_sheap_usage (1); |
3315 #endif | |
3316 | |
3317 clear_message (); | |
3318 | |
3319 fflush (stderr); | |
3320 fflush (stdout); | |
3321 | |
3322 disksave_object_finalization (); | |
3263 | 3323 #ifndef NEW_GC |
771 | 3324 release_breathing_space (); |
3263 | 3325 #endif /* not NEW_GC */ |
771 | 3326 |
3327 /* Tell malloc where start of impure now is */ | |
3328 /* Also arrange for warnings when nearly out of space. */ | |
3329 #ifndef SYSTEM_MALLOC | |
3330 memory_warnings (my_edata, malloc_warning); | |
3331 #endif | |
3332 | |
3092 | 3333 #ifdef NEW_GC |
3334 gc_full (); | |
3335 #else /* not NEW_GC */ | |
814 | 3336 garbage_collect_1 (); |
3092 | 3337 #endif /* not NEW_GC */ |
814 | 3338 |
3339 #ifdef PDUMP | |
3340 pdump (); | |
3341 #elif defined (WIN32_NATIVE) | |
3342 unexec (XSTRING_DATA (filename), | |
3343 STRINGP (symfile) ? XSTRING_DATA (symfile) : 0, | |
3344 (uintptr_t) my_edata, 0, 0); | |
3345 #else | |
771 | 3346 { |
3347 Extbyte *filename_ext; | |
3348 Extbyte *symfile_ext; | |
3349 | |
4981
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
3350 LISP_PATHNAME_CONVERT_OUT (filename, filename_ext); |
771 | 3351 |
3352 if (STRINGP (symfile)) | |
4981
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
3353 LISP_PATHNAME_CONVERT_OUT (symfile, symfile_ext); |
771 | 3354 else |
3355 symfile_ext = 0; | |
3356 | |
814 | 3357 # ifdef DOUG_LEA_MALLOC |
771 | 3358 malloc_state_ptr = malloc_get_state (); |
814 | 3359 # endif |
771 | 3360 /* here we break our rule that the filename conversion should |
3361 be performed at the actual time that the system call is made. | |
3362 It's a whole lot easier to do the conversion here than to | |
3363 modify all the unexec routines to ensure that filename | |
3364 conversion is applied everywhere. Don't worry about memory | |
3365 leakage because this call only happens once. */ | |
3366 unexec (filename_ext, symfile_ext, (uintptr_t) my_edata, 0, 0); | |
814 | 3367 # ifdef DOUG_LEA_MALLOC |
771 | 3368 free (malloc_state_ptr); |
814 | 3369 # endif |
771 | 3370 } |
814 | 3371 #endif /* not PDUMP, not WIN32_NATIVE */ |
771 | 3372 |
3373 purify_flag = opurify; | |
3374 | |
814 | 3375 UNGCPRO; |
771 | 3376 return Qnil; |
3377 } | |
3378 | |
3379 | |
3380 /************************************************************************/ | |
3381 /* exiting XEmacs (intended or not) */ | |
3382 /************************************************************************/ | |
3383 | |
5023
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3384 /* Do we need to pause with a message box so that messages can be read |
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3385 at shutdown? We do this is we have support for native Windows frames |
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3386 and if we are native Windows. The first part is because only when compiled |
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3387 for native Windows frames do we have Fmswindows_message_box(), and |
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3388 the second part is because we don't want to do this under Cygwin, where |
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3389 we have a Unix-like environment and a working stderr where the messages |
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3390 go. The two conditions sound somewhat redundant (maybe we could just |
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3391 use the second?) but they aren't completely: Theoretically (maybe with |
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3392 MinGW?) we could imagine compiling under native Windows as the OS |
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3393 but e.g. targetting only X Windows as the window system. --ben */ |
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3394 |
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3395 #if defined (HAVE_MS_WINDOWS) && defined (WIN32_NATIVE) |
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3396 # define NEED_WINDOWS_MESSAGE_PAUSE |
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3397 #endif |
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3398 |
2367 | 3399 /* |
3400 | |
3401 Info on intended/unintended exits: | |
3402 | |
3403 (Info-goto-node "(internals)Exiting") | |
771 | 3404 */ |
3405 | |
3406 /* ------------------------------- */ | |
3407 /* low-level debugging functions */ | |
3408 /* ------------------------------- */ | |
3409 | |
3410 #if defined (WIN32_NATIVE) && defined (DEBUG_XEMACS) | |
3411 #define debugging_breakpoint() DebugBreak () | |
3412 #else | |
3413 #define debugging_breakpoint() | |
3414 #endif | |
3415 | |
3416 void | |
3417 debug_break (void) | |
3418 { | |
3419 debugging_breakpoint (); | |
3420 } | |
3421 | |
1315 | 3422 #ifdef WIN32_ANY |
771 | 3423 |
3424 /* Return whether all bytes in the specified memory block can be read. */ | |
3425 int | |
4854 | 3426 debug_can_access_memory (const void *ptr, Bytecount len) |
771 | 3427 { |
3428 return !IsBadReadPtr (ptr, len); | |
3429 } | |
3430 | |
1315 | 3431 #else /* !WIN32_ANY */ |
771 | 3432 |
3433 /* #### There must be a better way!!!! */ | |
3434 | |
3435 static JMP_BUF memory_error_jump; | |
3436 | |
3437 static SIGTYPE | |
3438 debug_memory_error (int signum) | |
3439 { | |
3440 EMACS_REESTABLISH_SIGNAL (signum, debug_memory_error); | |
3441 EMACS_UNBLOCK_SIGNAL (signum); | |
3442 LONGJMP (memory_error_jump, 1); | |
3443 } | |
3444 | |
4871
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3445 /* Used in debug_can_access_memory(). Made into a global, externally |
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3446 accessible variable to make absolutely sure that no compiler will |
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3447 optimize away the memory-read function in debug_can_access_memory(); |
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3448 see comments there. */ |
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3449 |
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3450 volatile int dcam_saveval; |
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3451 |
771 | 3452 /* Return whether all bytes in the specified memory block can be read. */ |
3453 int | |
4854 | 3454 debug_can_access_memory (const void *ptr, Bytecount len) |
771 | 3455 { |
3456 /* Use volatile to protect variables from being clobbered by longjmp. */ | |
3457 SIGTYPE (*volatile old_sigbus) (int); | |
3458 SIGTYPE (*volatile old_sigsegv) (int); | |
3459 volatile int old_errno = errno; | |
3460 volatile int retval = 1; | |
3461 | |
4871
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3462 assert (len > 0); |
771 | 3463 if (!SETJMP (memory_error_jump)) |
3464 { | |
3465 old_sigbus = | |
3466 (SIGTYPE (*) (int)) EMACS_SIGNAL (SIGBUS, debug_memory_error); | |
3467 old_sigsegv = | |
3468 (SIGTYPE (*) (int)) EMACS_SIGNAL (SIGSEGV, debug_memory_error); | |
3469 | |
4871
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3470 /* We could just do memcmp (ptr, ptr, len), but we want to avoid any |
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3471 possibility that a super-optimizing compiler might optimize away such |
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3472 a call by concluding that its result is always 1. */ |
771 | 3473 if (len > 1) |
4871
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3474 /* Instead, if length is > 1, do off-by-one comparison. |
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3475 We save the value somewhere that is externally accessible to |
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3476 make absolutely sure that a compiler won't optimize away the |
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3477 call by concluding that the return value isn't really used. |
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3478 */ |
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3479 dcam_saveval = memcmp (ptr, (Rawbyte *) ptr + 1, len - 1); |
771 | 3480 else |
4871
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3481 { |
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3482 /* We can't do the off-by-one trick with only one byte, so instead, |
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3483 we compare to a fixed-sized buffer. */ |
5000
44d7bde26046
fix compile errors, fix revert-buffer bug on binary/Latin 1 files, Mule-ize some files
Ben Wing <ben@xemacs.org>
parents:
4982
diff
changeset
|
3484 Rawbyte randval[1]; |
4871
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3485 randval[0] = 0; |
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3486 dcam_saveval = memcmp (randval, ptr, len); |
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3487 } |
771 | 3488 } |
3489 else | |
3490 retval = 0; | |
3491 EMACS_SIGNAL (SIGBUS, old_sigbus); | |
3492 EMACS_SIGNAL (SIGSEGV, old_sigsegv); | |
3493 errno = old_errno; | |
854 | 3494 |
771 | 3495 return retval; |
3496 } | |
3497 | |
1315 | 3498 #endif /* WIN32_ANY */ |
771 | 3499 |
3500 #ifdef DEBUG_XEMACS | |
3501 | |
3502 DEFUN ("force-debugging-signal", Fforce_debugging_signal, 0, 1, 0, /* | |
3503 Cause XEmacs to enter the debugger. | |
3504 On some systems, there may be no way to do this gracefully; if so, | |
3505 nothing happens unless ABORT is non-nil, in which case XEmacs will | |
2500 | 3506 ABORT() -- a sure-fire way to immediately get back to the debugger, |
771 | 3507 but also a sure-fire way to kill XEmacs (and dump core on Unix |
3508 systems)! | |
3509 */ | |
3510 (abort_)) | |
3511 { | |
3512 debugging_breakpoint (); | |
3513 if (!NILP (abort_)) | |
2500 | 3514 ABORT (); |
771 | 3515 return Qnil; |
3516 } | |
3517 | |
3518 #endif /* DEBUG_XEMACS */ | |
3519 | |
3520 /* ------------------------------- */ | |
3521 /* some helper functions */ | |
3522 /* ------------------------------- */ | |
3523 | |
3524 static void | |
3525 ensure_no_quitting_from_now_on (void) | |
3526 { | |
3527 /* make sure no quitting from now on!! */ | |
3528 dont_check_for_quit = 1; | |
3529 Vinhibit_quit = Qt; | |
3530 Vquit_flag = Qnil; | |
3531 } | |
3532 | |
5023
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3533 #ifdef NEED_WINDOWS_MESSAGE_PAUSE |
771 | 3534 static void |
3535 pause_so_user_can_read_messages (int allow_further) | |
3536 { | |
3537 static int already_paused; | |
3538 | |
1315 | 3539 if (already_paused) |
771 | 3540 return; |
3541 if (!allow_further) | |
3542 already_paused = 1; | |
442 | 3543 /* If we displayed a message on the console, then we must allow the |
3544 user to see this message. This may be unnecessary, but can't hurt, | |
3545 and we can't necessarily check arg; e.g. xemacs --help kills with | |
3546 argument 0. */ | |
1315 | 3547 if (mswindows_message_outputted && |
3548 /* noninteractive, we always show the box. Else, | |
3549 do it when there is not yet an initial frame -- in such case, | |
3550 XEmacs will just die immediately and we wouldn't see anything. */ | |
3551 (noninteractive || NILP (Fselected_frame (Qnil)))) | |
771 | 3552 Fmswindows_message_box |
3553 (build_msg_string ("Messages outputted. XEmacs is exiting."), | |
3554 Qnil, Qnil); | |
3555 } | |
442 | 3556 #endif |
3557 | |
826 | 3558 #ifdef WIN32_NATIVE |
3559 | |
3560 static DWORD CALLBACK | |
3561 wait_for_termination_signal (LPVOID handle) | |
3562 { | |
3563 HANDLE hevent = (HANDLE) handle; | |
3564 WaitForSingleObject (hevent, INFINITE); | |
3565 ExitProcess (0); | |
3566 return 0; /* not reached */ | |
3567 } | |
3568 | |
3569 #endif | |
771 | 3570 /* -------------------------------- */ |
3571 /* a (more-or-less) normal shutdown */ | |
3572 /* -------------------------------- */ | |
428 | 3573 |
3574 /* Perform an orderly shutdown of XEmacs. Autosave any modified | |
3575 buffers, kill any child processes, clean up the terminal modes (if | |
3576 we're in the foreground), and other stuff like that. Don't perform | |
3577 any redisplay; this may be called when XEmacs is shutting down in | |
3578 the background, or after its X connection has died. | |
3579 | |
3580 If SIG is a signal number, print a message for it. | |
3581 | |
442 | 3582 This is called by fatal signal handlers and Fkill_emacs. It used to |
3583 be called by X protocol error handlers, but instead they now call | |
3584 Fkill_emacs. */ | |
771 | 3585 |
428 | 3586 static void |
442 | 3587 shut_down_emacs (int sig, Lisp_Object stuff, int no_auto_save) |
428 | 3588 { |
3589 /* This function can GC */ | |
3590 /* Prevent running of hooks and other non-essential stuff | |
3591 from now on. */ | |
3592 preparing_for_armageddon = 1; | |
3593 | |
442 | 3594 ensure_no_quitting_from_now_on (); |
428 | 3595 |
3596 #ifdef QUANTIFY | |
3597 quantify_stop_recording_data (); | |
3598 #endif /* QUANTIFY */ | |
3599 | |
3600 /* This is absolutely the most important thing to do, so make sure | |
3601 we do it now, before anything else. We might have crashed and | |
3602 be in a weird inconsistent state, and potentially anything could | |
3603 set off another protection fault and cause us to bail out | |
3604 immediately. */ | |
442 | 3605 /* Steve writes the following: |
3606 | |
3607 [[I'm not removing the code entirely, yet. We have run up against | |
428 | 3608 a spate of problems in diagnosing crashes due to crashes within |
3609 crashes. It has very definitely been determined that code called | |
3610 during auto-saving cannot work if XEmacs crashed inside of GC. | |
3611 We already auto-save on an itimer so there cannot be too much | |
3612 unsaved stuff around, and if we get better crash reports we might | |
442 | 3613 be able to get more problems fixed so I'm disabling this. -slb]] |
3614 | |
3615 and DISABLES AUTO-SAVING ENTIRELY during crashes! Way way bad idea. | |
3616 | |
3617 Instead let's just be more intelligent about avoiding crashing | |
3618 when possible, esp. nested crashes. | |
3619 */ | |
3620 if (!no_auto_save) | |
3621 Fdo_auto_save (Qt, Qnil); /* do this before anything hazardous */ | |
428 | 3622 |
3623 fflush (stdout); | |
3624 reset_all_consoles (); | |
3625 if (sig && sig != SIGTERM) | |
3626 { | |
442 | 3627 if (sig == -1) |
3628 stderr_out ("\nFatal error.\n\n"); | |
3629 else | |
3630 stderr_out ("\nFatal error (%d).\n\n", sig); | |
428 | 3631 stderr_out |
3632 ("Your files have been auto-saved.\n" | |
1204 | 3633 "Use `M-x recover-session' to recover them.\n" |
3634 "\n" | |
3635 "Your version of XEmacs was distributed with a PROBLEMS file that may describe\n" | |
3636 "your crash, and with luck a workaround. Please check it first, but do report\n" | |
3637 "the crash anyway.\n\n" | |
428 | 3638 #ifdef INFODOCK |
1204 | 3639 "Please report this bug by selecting `Report-Bug' in the InfoDock menu, or\n" |
2994 | 3640 "(last resort) by emailing `xemacs-beta@xemacs.org' -- note that this is for\n" |
3641 "XEmacs in general, not just Infodock." | |
428 | 3642 #else |
1204 | 3643 "Please report this bug by invoking M-x report-emacs-bug, or by selecting\n" |
3644 "`Send Bug Report' from the Help menu. If that won't work, send ordinary\n" | |
2994 | 3645 "email to `xemacs-beta@xemacs.org'." |
3646 #endif | |
3647 " *MAKE SURE* to include this entire\n" | |
3648 "output from this crash, especially including the Lisp backtrace, as well as\n" | |
3649 "the XEmacs configuration from M-x describe-installation (or equivalently,\n" | |
3650 "the file `Installation' in the top of the build tree).\n" | |
1204 | 3651 #ifdef _MSC_VER |
3652 "\n" | |
3653 "If you are fortunate enough to have some sort of debugging aid installed\n" | |
3654 "on your system, for example Visual C++, and you can get a C stack backtrace,\n" | |
3655 "*please* include it, as it will make our life far easier.\n" | |
3656 "\n" | |
3657 #else | |
3658 "\n" | |
3659 "*Please* try *hard* to obtain a C stack backtrace; without it, we are unlikely\n" | |
3660 "to be able to analyze the problem. Locate the core file produced as a result\n" | |
3661 "of this crash (often called `core' or `core.<process-id>', and located in\n" | |
3662 "the directory in which you started XEmacs or your home directory), and type\n" | |
3663 "\n" | |
3664 " gdb " | |
442 | 3665 #endif |
3666 ); | |
3667 #ifndef _MSC_VER | |
428 | 3668 { |
2367 | 3669 const Ibyte *name; |
3670 Ibyte *dir = 0; | |
428 | 3671 |
3672 /* Now try to determine the actual path to the executable, | |
3673 to try to make the backtrace-determination process as foolproof | |
3674 as possible. */ | |
3675 if (STRINGP (Vinvocation_name)) | |
2367 | 3676 name = XSTRING_DATA (Vinvocation_name); |
428 | 3677 else |
2367 | 3678 name = (const Ibyte *) "xemacs"; |
428 | 3679 if (STRINGP (Vinvocation_directory)) |
2367 | 3680 dir = XSTRING_DATA (Vinvocation_directory); |
428 | 3681 if (!dir || dir[0] != '/') |
3682 stderr_out ("`which %s`", name); | |
2367 | 3683 else if (dir[qxestrlen (dir) - 1] != '/') |
428 | 3684 stderr_out ("%s/%s", dir, name); |
3685 else | |
3686 stderr_out ("%s%s", dir, name); | |
3687 } | |
3688 stderr_out | |
1097 | 3689 (" core\n" |
3690 "\n" | |
1204 | 3691 "then type `where' at the debugger prompt. No GDB on your system? You may\n" |
3692 "have DBX, or XDB, or SDB. (Ask your system administrator if you need help.)\n" | |
3693 "If no core file was produced, enable them (often with `ulimit -c unlimited')\n" | |
3694 "in case of future recurrance of the crash.\n"); | |
442 | 3695 #endif /* _MSC_VER */ |
428 | 3696 } |
3697 | |
3698 stuff_buffered_input (stuff); | |
3699 | |
3700 kill_buffer_processes (Qnil); | |
3701 | |
3702 #ifdef CLASH_DETECTION | |
3703 unlock_all_files (); | |
3704 #endif | |
3705 | |
3706 #ifdef TOOLTALK | |
3707 tt_session_quit (tt_default_session ()); | |
3708 #if 0 | |
3709 /* The following crashes when built on X11R5 and run on X11R6 */ | |
3710 tt_close (); | |
3711 #endif | |
3712 #endif /* TOOLTALK */ | |
3713 } | |
3714 | |
771 | 3715 /* Dumping apparently isn't supported by versions of GCC >= 2.8. */ |
3716 /* The following needs conditionalization on whether either XEmacs or */ | |
3717 /* various system shared libraries have been built and linked with */ | |
3718 /* GCC >= 2.8. -slb */ | |
4735
80d74fed5399
Remove "old" GNU malloc in src/malloc.c, and all references to it. Drop the
Jerry James <james@xemacs.org>
parents:
4710
diff
changeset
|
3719 #ifndef SYSTEM_MALLOC |
771 | 3720 static void |
2286 | 3721 voodoo_free_hook (void *UNUSED (mem)) |
771 | 3722 { |
3723 /* Disable all calls to free() when XEmacs is exiting and it doesn't */ | |
3724 /* matter. */ | |
3725 __free_hook = | |
2286 | 3726 #if defined (TYPEOF) && !defined (UNO) |
1792 | 3727 /* prototype of __free_hook varies with glibc version */ |
1799 | 3728 (TYPEOF (__free_hook)) |
440 | 3729 #endif |
771 | 3730 voodoo_free_hook; |
3731 } | |
4735
80d74fed5399
Remove "old" GNU malloc in src/malloc.c, and all references to it. Drop the
Jerry James <james@xemacs.org>
parents:
4710
diff
changeset
|
3732 #endif /* SYSTEM_MALLOC */ |
771 | 3733 |
2268 | 3734 DEFUN_NORETURN ("kill-emacs", Fkill_emacs, 0, 1, "P", /* |
771 | 3735 Exit the XEmacs job and kill it. Ask for confirmation, without argument. |
3736 If ARG is an integer, return ARG as the exit program code. | |
3737 If ARG is a string, stuff it as keyboard input. | |
3738 | |
3739 The value of `kill-emacs-hook', if not void, | |
3740 is a list of functions (of no args), | |
3741 all of which are called before XEmacs is actually killed. | |
428 | 3742 */ |
771 | 3743 (arg)) |
428 | 3744 { |
3745 /* This function can GC */ | |
771 | 3746 struct gcpro gcpro1; |
3747 | |
3748 GCPRO1 (arg); | |
3749 | |
3750 if (feof (stdin)) | |
3751 arg = Qt; | |
3752 | |
3753 if (!preparing_for_armageddon && !noninteractive) | |
3754 run_hook (Qkill_emacs_hook); | |
3755 | |
3756 ensure_no_quitting_from_now_on (); | |
3757 | |
3758 if (!preparing_for_armageddon) | |
428 | 3759 { |
771 | 3760 Lisp_Object concons, nextcons; |
3761 | |
3762 /* Normally, go ahead and delete all the consoles now. | |
3763 Some unmentionably lame window systems (MS Wwwww...... eek, | |
3764 I can't even say it) don't properly clean up after themselves, | |
3765 and even for those that do, it might be cleaner this way. | |
3766 If we're going down, however, we don't do this (might | |
3767 be too dangerous), and if we get a crash somewhere within | |
3768 this loop, we'll still autosave and won't try this again. */ | |
3769 | |
3770 LIST_LOOP_DELETING (concons, nextcons, Vconsole_list) | |
3771 { | |
3772 /* There is very little point in deleting the stream console. | |
3773 It uses stdio, which should flush any buffered output and | |
3774 something can only go wrong. -slb */ | |
3775 /* I changed my mind. There's a stupid hack in close to add | |
3776 a trailing newline. */ | |
3777 /*if (!CONSOLE_STREAM_P (XCONSOLE (XCAR (concons))))*/ | |
3778 delete_console_internal (XCONSOLE (XCAR (concons)), 1, 1, 0); | |
3779 } | |
428 | 3780 } |
3781 | |
3782 UNGCPRO; | |
3783 | |
5023
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3784 #ifdef NEED_WINDOWS_MESSAGE_PAUSE |
771 | 3785 pause_so_user_can_read_messages (1); |
428 | 3786 #endif |
854 | 3787 |
771 | 3788 shut_down_emacs (0, STRINGP (arg) ? arg : Qnil, 0); |
3789 | |
4735
80d74fed5399
Remove "old" GNU malloc in src/malloc.c, and all references to it. Drop the
Jerry James <james@xemacs.org>
parents:
4710
diff
changeset
|
3790 #ifndef SYSTEM_MALLOC |
771 | 3791 __free_hook = |
2286 | 3792 #if defined (TYPEOF) && !defined (UNO) |
1792 | 3793 /* prototype of __free_hook varies with glibc version */ |
1799 | 3794 (TYPEOF (__free_hook)) |
771 | 3795 #endif |
3796 voodoo_free_hook; | |
428 | 3797 #endif |
771 | 3798 |
3799 exit (INTP (arg) ? XINT (arg) : 0); | |
2268 | 3800 RETURN_NOT_REACHED (Qnil); |
428 | 3801 } |
3802 | |
771 | 3803 /* -------------------------------- */ |
3804 /* abnormal shutdowns: GP faults */ | |
3805 /* -------------------------------- */ | |
3806 | |
814 | 3807 /* This is somewhat ad-hoc ... figure out whether the user is developing |
3808 XEmacs, which means (under MS Windows) they have a system debugger | |
3809 installed that catches GP faults in any application and lets them open | |
3810 up MS Dev Studio and start debugging the application -- similar to | |
3811 producing a core dump and then going back with a debugger to investigate | |
3812 the core dump, except that the program is still running. When this is | |
3813 installed, it's better not to "pause so user gets messages" because the | |
3814 debugger will pause anyway; and in case we're currently with a menu | |
3815 popped up or somewhere else inside of an internal modal loop, we will | |
3816 get wedged when we output the "pause". (It seems that the two modal | |
3817 loops will fight each other and the return key will never be passed to | |
3818 the "pause" handler so that XEmacs's GPF handler can return, resignal | |
3819 the GPF, and properly go into the debugger.) */ | |
5023
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3820 #ifdef ERROR_CHECK_ANY |
814 | 3821 #define USER_IS_DEVELOPING_XEMACS |
3822 #endif | |
3823 | |
854 | 3824 |
771 | 3825 /* Handle bus errors, illegal instruction, etc: actual implementation. */ |
3826 static void | |
3827 guts_of_fatal_error_signal (int sig) | |
428 | 3828 { |
771 | 3829 fatal_error_in_progress++; |
2367 | 3830 inhibit_non_essential_conversion_operations = 1; |
771 | 3831 preparing_for_armageddon = 1; |
3832 | |
3833 ensure_no_quitting_from_now_on (); | |
3834 | |
3835 /* Only try auto-saving first time through. If we crash in auto-saving, | |
3836 don't do it again. */ | |
3837 if (fatal_error_in_progress == 1) | |
428 | 3838 { |
771 | 3839 Fdo_auto_save (Qt, Qnil); /* do this before anything hazardous */ |
3840 /* Do this so that the variable has the same value of 2 regardless of | |
3841 whether we made it through auto-saving correctly. */ | |
3842 fatal_error_in_progress++; | |
428 | 3843 } |
771 | 3844 else if (fatal_error_in_progress == 2) |
3845 stderr_out ("WARNING: Unable to auto-save your files properly.\n" | |
3846 "Some or all may in fact have been auto-saved.\n" | |
3847 "\n"); | |
3848 | |
3849 /* Now, reset our signal handler, so the next time, we just die. | |
3850 Don't do this before auto-saving. */ | |
3851 if (sig >= 0) | |
3852 EMACS_SIGNAL (sig, SIG_DFL); | |
3853 | |
3854 /* Keep in mind that there's more than one signal that we can crash | |
3855 on. */ | |
3856 /* If fatal error occurs in code below, avoid infinite recursion. */ | |
3857 if (fatal_error_in_progress <= 2) | |
3858 { | |
3859 shut_down_emacs (sig, Qnil, 1); | |
3860 stderr_out ("\nLisp backtrace follows:\n\n"); | |
3861 debug_backtrace (); | |
3862 # if 0 /* This is evil, rarely useful, and causes grief in some cases. */ | |
3863 /* Check for Sun-style stack printing via /proc */ | |
3864 { | |
2367 | 3865 const Ascbyte *pstack = "/usr/proc/bin/pstack"; |
771 | 3866 if (access (pstack, X_OK) == 0) |
3867 { | |
2367 | 3868 Ascbyte buf[100]; |
771 | 3869 stderr_out ("\nC backtrace follows:\n" |
3870 "(A real debugger may provide better information)\n\n"); | |
2367 | 3871 sprintf (buf, "%s %d >&2", pstack, (int) getpid()); |
771 | 3872 system (buf); |
3873 } | |
3874 } | |
3875 # endif | |
5023
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3876 #if defined (NEED_WINDOWS_MESSAGE_PAUSE) && !defined (USER_IS_DEVELOPING_XEMACS) |
771 | 3877 pause_so_user_can_read_messages (0); |
3878 #endif | |
3879 } | |
428 | 3880 } |
3881 | |
771 | 3882 /* This is called when a fatal signal (SIGBUS aka "bus error", SIGSEGV aka |
3883 "segmentation violation", SIGILL aka "illegal instruction", and many | |
3884 others) is sent to the program. This generally happens under Unix, | |
3885 not MS Windows. */ | |
3886 SIGTYPE | |
3887 fatal_error_signal (int sig) | |
428 | 3888 { |
771 | 3889 /* Unblock the signal so that if the same signal gets sent in the |
3890 code below, we avoid a deadlock. */ | |
3891 EMACS_UNBLOCK_SIGNAL (sig); | |
3892 | |
3893 guts_of_fatal_error_signal (sig); | |
3894 | |
3092 | 3895 #ifdef NEW_GC |
3896 /* This time the signal will really be fatal. To be able to debug | |
3897 SIGSEGV and SIGBUS also during write barrier, send SIGABRT. */ | |
3898 #ifdef WIN32_NATIVE | |
3899 if (sig == SIGSEGV) | |
3900 raise (SIGABRT); | |
3901 else | |
3902 raise (sig); | |
3903 #else | |
3904 if ((sig == SIGSEGV) || (sig == SIGBUS)) | |
3905 kill (qxe_getpid (), SIGABRT); | |
3906 else | |
3907 kill (qxe_getpid (), sig); | |
3908 #endif | |
3909 #else /* not NEW_GC */ | |
771 | 3910 /* Signal the same code; this time it will really be fatal. */ |
3911 #ifdef WIN32_NATIVE | |
3912 raise (sig); | |
3913 #else | |
3914 kill (qxe_getpid (), sig); | |
3915 #endif | |
3092 | 3916 #endif /* not NEW_GC */ |
771 | 3917 SIGRETURN; |
428 | 3918 } |
3919 | |
771 | 3920 #ifdef _MSC_VER |
3921 | |
3922 #define STATUS_ASSERTION_FAILURE 0xE0000001 | |
3923 | |
3924 static DWORD | |
3925 mswindows_handle_hardware_exceptions_1 (void) | |
428 | 3926 { |
2367 | 3927 inhibit_non_essential_conversion_operations = 1; |
793 | 3928 preparing_for_armageddon = 1; |
814 | 3929 #if !defined (USER_IS_DEVELOPING_XEMACS) |
771 | 3930 pause_so_user_can_read_messages (0); |
814 | 3931 #endif |
771 | 3932 return EXCEPTION_EXECUTE_HANDLER; |
428 | 3933 } |
3934 | |
771 | 3935 /* This is called under MS Windows when an exception (this encompasses both |
3936 user-defined exceptions and hardware exceptions such as GP faults aka | |
3937 SIGBUS or SIGSEGV) is triggered. */ | |
3938 | |
3939 static DWORD | |
3940 mswindows_handle_hardware_exceptions (DWORD code) | |
428 | 3941 { |
771 | 3942 if (code != STATUS_ACCESS_VIOLATION && code != STATUS_ILLEGAL_INSTRUCTION |
3943 && code != STATUS_PRIVILEGED_INSTRUCTION | |
3944 && code != STATUS_DATATYPE_MISALIGNMENT | |
3945 && code != STATUS_ASSERTION_FAILURE) | |
3946 return EXCEPTION_CONTINUE_SEARCH; | |
3947 | |
3948 /* I don't know if this filter is still wrapped in the outer __try, but | |
3949 it doesn't hurt to have another one, and it lets us control more | |
3950 exactly what we really want to do in such a situation. What we do is | |
3951 pause, if we haven't already done so, so that the user can see what's | |
3952 output. This is critical because otherwise the output is gone. */ | |
3953 __try | |
3954 { | |
3955 guts_of_fatal_error_signal (-1); | |
3956 } | |
3957 /* VC++ documentation says that | |
3958 GetExceptionCode() cannot be called inside the filter itself. */ | |
3959 | |
3960 /* __except (mswindows_handle_hardware_exceptions (GetExceptionCode ())) {} | |
3961 | |
3962 The line above is original. Unfortunately, when an error is tripped | |
3963 inside of the handler (e.g. during Fbacktrace()), and the handler for | |
3964 the handler is invoked, it correctly notices that something is amiss | |
3965 and it should just return -- but it returns EXCEPTION_CONTINUE_SEARCH, | |
3966 which causes the debugger to be invoked debugging the handler code in | |
3967 this function -- and WITH THE STACK UNWOUND so that you see main() | |
3968 calling mswindows_handle_hardware_exceptions(), calling Fbacktrace(), | |
3969 and a crash a couple of frames in -- AND NO SIGN OF THE ORIGINAL CRASH! | |
3970 | |
3971 There's some real weirdness going on in the stack handling -- unlike | |
3972 in Unix, where further crashes just keep adding to the stack, it seems | |
3973 that under the structured-exception-handling, the stack can actually | |
3974 bounce back and forth between the full stack at the location of the | |
3975 exception and the unwound stack at the place where the __try clause was | |
3976 established. I don't completely understand it. What I do know is that | |
3977 returning EXCEPTION_EXECUTE_HANDLER on nested crash has the effect of | |
3978 aborting execution of the handler and going back to the outer filter | |
3979 function, which returns EXCEPTION_CONTINUE_SEARCH and everything is | |
3980 hunky-dorey -- your debugger sees a crash at the right location with | |
3981 the right stack. | |
3982 | |
3983 I'm leaving in the trickier Unix-like code in the handler; someone who | |
3984 understands better than me how the stack works in these handlers could | |
3985 fix it up more. As it is, it works pretty well, so I'm not likely to | |
3986 touch it more. --ben | |
3987 */ | |
3988 | |
3989 __except (mswindows_handle_hardware_exceptions_1 ()) {} | |
3990 | |
3991 /* pretend we didn't handle this, so that the debugger is invoked and/or | |
3992 the normal GPF box appears. */ | |
3993 return EXCEPTION_CONTINUE_SEARCH; | |
428 | 3994 } |
3995 | |
771 | 3996 #endif /* _MSC_VER */ |
3997 | |
3998 /* -------------------------------------- */ | |
3999 /* abnormal shutdowns: assertion failures */ | |
4000 /* -------------------------------------- */ | |
428 | 4001 |
4002 /* This flag is useful to define if you're under a debugger; this way, you | |
4003 can put a breakpoint of assert_failed() and debug multiple problems | |
4004 in one session without having to recompile. */ | |
4005 /* #define ASSERTIONS_DONT_ABORT */ | |
4006 | |
4007 /* This highly dubious kludge ... shut up Jamie, I'm tired of your slagging. */ | |
4008 | |
771 | 4009 /* Nonzero if handling an assertion failure. (Bumped by one each time |
4010 we recursively hit such a failure.) */ | |
442 | 4011 static int in_assert_failed; |
771 | 4012 |
2367 | 4013 static const Ascbyte *assert_failed_file; |
442 | 4014 static int assert_failed_line; |
2367 | 4015 static const Ascbyte *assert_failed_expr; |
442 | 4016 |
4017 #ifdef fprintf | |
4018 #undef fprintf | |
4019 #endif | |
4020 | |
2500 | 4021 /* This is called when an assert() fails or when ABORT() is called -- both |
771 | 4022 of those are defined in the preprocessor to an expansion involving |
4023 assert_failed(). */ | |
442 | 4024 void |
2367 | 4025 assert_failed (const Ascbyte *file, int line, const Ascbyte *expr) |
428 | 4026 { |
442 | 4027 /* If we're already crashing, let's not crash again. This might be |
4028 critical to getting auto-saving working properly. */ | |
4029 if (fatal_error_in_progress) | |
4030 return; | |
4031 | |
4032 /* We are extremely paranoid so we sensibly deal with recursive | |
4033 assertion failures. */ | |
4034 in_assert_failed++; | |
5014
c2e0c3af5fe3
cleanups to debug-print, try harder to make it work during GC
Ben Wing <ben@xemacs.org>
parents:
5000
diff
changeset
|
4035 inhibit_non_essential_conversion_operations++; |
442 | 4036 |
4037 if (in_assert_failed >= 4) | |
4038 _exit (-1); | |
4039 else if (in_assert_failed == 3) | |
4040 { | |
771 | 4041 debugging_breakpoint (); |
442 | 4042 _exit (-1); |
4043 } | |
4044 else if (in_assert_failed == 2) | |
4045 { | |
771 | 4046 /* Ultra-paranoia. stderr_out() tries very hard not to do |
4047 anything during assertion failures that might trigger more | |
4048 failures; but we might have messed up somewhere. fprintf was | |
4049 undeffed above, in case it was encapsulated. */ | |
442 | 4050 fprintf (stderr, |
4051 "Fatal error: recursive assertion failure, " | |
4052 "file %s, line %d, %s\n", | |
4053 file, line, expr); | |
4054 fprintf (stderr, | |
4055 "Original assertion failure: file %s, line %d, %s\n", | |
4056 assert_failed_file, assert_failed_line, assert_failed_expr); | |
4057 } | |
4058 else | |
4059 { | |
4060 assert_failed_file = file; | |
4061 assert_failed_line = line; | |
4062 assert_failed_expr = expr; | |
4063 | |
771 | 4064 stderr_out ("\nFatal error: assertion failed, file %s, line %d, %s\n", |
4065 file, line, expr); | |
442 | 4066 } |
4067 | |
771 | 4068 /* Enable the following if you want a breakpoint right away to the |
4069 debugger, without the whole shutdown processing first. This can be | |
4070 useful if you're afraid the shutdown processing will modify state that | |
4071 you're trying to debug (generally fairly unlikely); but you then don't | |
4072 get the auto-save behavior, which may be extremely important if you | |
4073 were in the middle of doing something */ | |
4074 /* debugging_breakpoint (); */ | |
442 | 4075 #if !defined (ASSERTIONS_DONT_ABORT) |
1346 | 4076 #if defined (_MSC_VER) || defined (CYGWIN) |
4077 /* In VC++, calling abort() directly just seems to exit, in a way we can't | |
1303 | 4078 trap. (#### The docs say it does raise (SIGABRT), which we should be |
771 | 4079 able to trap. Perhaps we're messing up somewhere? Or perhaps MS is |
4080 messed up.) | |
4081 | |
4082 So, instead we cause an exception and enter into the structured | |
4083 exception-handling mechanism, which is just like what happens when a | |
4084 GPF occurs, and is cleaner anyway. (If we entered into one of the | |
4085 signal handlers, a crash in there would enter anyway into the | |
4086 structured exception stuff, and you'd get some weird mixture. Cleaner | |
4087 to keep it all in the expected way.) | |
4088 */ | |
4089 /* Either of the following work in terms of causing an exception. The | |
4090 second one looks cleaner but you get an odd message about "Unknown | |
4091 software exception ..." without the obvious "OK to terminate", "Cancel | |
4092 to debug"; instead, you just get OK/Cancel, which in fact do those | |
4093 same things. */ | |
1346 | 4094 /* In Cygwin, abort() doesn't get trapped properly in gdb but seg faults |
4095 do, so we resort to the same trick. */ | |
771 | 4096 * ((int *) 0) = 666; |
4097 /* RaiseException (STATUS_ASSERTION_FAILURE, EXCEPTION_NONCONTINUABLE, 0, | |
4098 0); */ | |
4099 #else | |
4100 really_abort (); | |
1346 | 4101 #endif /* defined (_MSC_VER) || defined (CYGWIN) */ |
771 | 4102 #endif /* !defined (ASSERTIONS_DONT_ABORT) */ |
5014
c2e0c3af5fe3
cleanups to debug-print, try harder to make it work during GC
Ben Wing <ben@xemacs.org>
parents:
5000
diff
changeset
|
4103 inhibit_non_essential_conversion_operations--; |
c2e0c3af5fe3
cleanups to debug-print, try harder to make it work during GC
Ben Wing <ben@xemacs.org>
parents:
5000
diff
changeset
|
4104 in_assert_failed--; |
428 | 4105 } |
4106 | |
5090 | 4107 /* This is called when an assert() fails or when ABORT() is called -- both |
4108 of those are defined in the preprocessor to an expansion involving | |
4109 assert_failed(). */ | |
4110 void | |
4111 assert_equal_failed (const Ascbyte *file, int line, EMACS_INT x, EMACS_INT y, | |
4112 const Ascbyte *exprx, const Ascbyte *expry) | |
4113 { | |
4114 Ascbyte bigstr[1000]; /* #### Could overflow, but avoids any need to do any | |
4115 allocation, even alloca(), hence safer */ | |
4116 sprintf (bigstr, "%s (%ld) should == %s (%ld) but doesn't", | |
4117 exprx, x, expry, y); | |
4118 assert_failed (file, line, bigstr); | |
4119 } | |
4120 | |
771 | 4121 /* -------------------------------------- */ |
4122 /* low-memory notification */ | |
4123 /* -------------------------------------- */ | |
4124 | |
4125 #ifdef SIGDANGER | |
4126 | |
4127 /* Handler for SIGDANGER. */ | |
4128 SIGTYPE | |
4129 memory_warning_signal (int sig) | |
4130 { | |
4131 /* #### bad bad bad; this function shouldn't do anything except | |
4132 set a flag, or weird corruption could happen. */ | |
4133 EMACS_SIGNAL (sig, memory_warning_signal); | |
4134 | |
4135 malloc_warning | |
4136 (GETTEXT ("Operating system warns that virtual memory is running low.\n")); | |
4137 | |
4138 /* It might be unsafe to call do_auto_save now. */ | |
4139 force_auto_save_soon (); | |
4140 } | |
4141 #endif /* SIGDANGER */ | |
4142 | |
4143 | |
4144 /************************************************************************/ | |
4145 /* Miscellaneous */ | |
4146 /************************************************************************/ | |
4147 | |
4148 DEFUN ("noninteractive", Fnoninteractive, 0, 0, 0, /* | |
4149 Non-nil return value means XEmacs is running without interactive terminal. | |
528 | 4150 */ |
771 | 4151 ()) |
528 | 4152 { |
771 | 4153 return noninteractive ? Qt : Qnil; |
528 | 4154 } |
4155 | |
428 | 4156 #ifdef QUANTIFY |
4157 DEFUN ("quantify-start-recording-data", Fquantify_start_recording_data, | |
4158 0, 0, "", /* | |
4159 Start recording Quantify data. | |
4160 */ | |
4161 ()) | |
4162 { | |
4163 quantify_start_recording_data (); | |
4164 return Qnil; | |
4165 } | |
4166 | |
4167 DEFUN ("quantify-stop-recording-data", Fquantify_stop_recording_data, | |
4168 0, 0, "", /* | |
4169 Stop recording Quantify data. | |
4170 */ | |
4171 ()) | |
4172 { | |
4173 quantify_stop_recording_data (); | |
4174 return Qnil; | |
4175 } | |
4176 | |
4177 DEFUN ("quantify-clear-data", Fquantify_clear_data, 0, 0, "", /* | |
4178 Clear all Quantify data. | |
4179 */ | |
4180 ()) | |
4181 { | |
4182 quantify_clear_data (); | |
4183 return Qnil; | |
4184 } | |
4185 #endif /* QUANTIFY */ | |
4186 | |
4187 void | |
4188 syms_of_emacs (void) | |
4189 { | |
4190 DEFSUBR (Fdump_emacs); | |
4191 | |
4192 DEFSUBR (Frun_emacs_from_temacs); | |
4193 DEFSUBR (Frunning_temacs_p); | |
1315 | 4194 DEFSUBR (Femacs_run_status); |
428 | 4195 DEFSUBR (Finvocation_name); |
4196 DEFSUBR (Finvocation_directory); | |
4197 DEFSUBR (Fkill_emacs); | |
4198 DEFSUBR (Fnoninteractive); | |
4199 | |
528 | 4200 #ifdef DEBUG_XEMACS |
4201 DEFSUBR (Fforce_debugging_signal); | |
4202 #endif | |
4203 | |
428 | 4204 #ifdef QUANTIFY |
4205 DEFSUBR (Fquantify_start_recording_data); | |
4206 DEFSUBR (Fquantify_stop_recording_data); | |
4207 DEFSUBR (Fquantify_clear_data); | |
4208 #endif /* QUANTIFY */ | |
4209 | |
563 | 4210 DEFSYMBOL (Qkill_emacs_hook); |
4211 DEFSYMBOL (Qsave_buffers_kill_emacs); | |
1315 | 4212 |
4213 DEFSYMBOL (Qtemacs); | |
4214 DEFSYMBOL (Qdumping); | |
4215 DEFSYMBOL (Qrestarted); | |
4216 DEFSYMBOL (Qpdump); | |
4217 DEFSYMBOL (Qbatch); | |
428 | 4218 } |
4219 | |
776 | 4220 /* Yuck! These variables may get set from command-line options when |
4221 dumping; if we don't clear them, they will still be on once the dumped | |
4222 XEmacs reloads. (not an issue with pdump, as we kludge around this in | |
4223 main_1().) */ | |
4224 | |
4225 void | |
4226 zero_out_command_line_status_vars (void) | |
4227 { | |
4228 vanilla_inhibiting = 0; | |
4229 inhibit_early_packages = 0; | |
4230 inhibit_all_packages = 0; | |
4231 inhibit_autoloads = 0; | |
4232 debug_paths = 0; | |
4233 #ifndef INHIBIT_SITE_LISP | |
4234 inhibit_site_lisp = 0; | |
4235 #else | |
4236 inhibit_site_lisp = 1; | |
4237 #endif | |
4238 #ifndef INHIBIT_SITE_MODULES | |
4239 inhibit_site_modules = 0; | |
4240 #else | |
4241 inhibit_site_modules = 1; | |
4242 #endif | |
4243 } | |
4244 | |
428 | 4245 void |
4246 vars_of_emacs (void) | |
4247 { | |
4248 DEFVAR_BOOL ("suppress-early-error-handler-backtrace", | |
4249 &suppress_early_error_handler_backtrace /* | |
4250 Non-nil means early error handler shouldn't print a backtrace. | |
4251 */ ); | |
4252 | |
4253 DEFVAR_LISP ("command-line-args", &Vcommand_line_args /* | |
4254 Args passed by shell to XEmacs, as a list of strings. | |
4255 */ ); | |
4256 | |
4257 DEFVAR_LISP ("invocation-name", &Vinvocation_name /* | |
4258 The program name that was used to run XEmacs. | |
4259 Any directory names are omitted. | |
4260 */ ); | |
4261 | |
4262 DEFVAR_LISP ("invocation-directory", &Vinvocation_directory /* | |
4263 The directory in which the XEmacs executable was found, to run it. | |
4264 The value is simply the program name if that directory's name is not known. | |
4265 */ ); | |
4266 | |
4267 DEFVAR_LISP ("invocation-path", &Vinvocation_path /* | |
4268 The path in which the XEmacs executable was found, to run it. | |
4269 The value is simply the value of environment variable PATH on startup | |
4270 if XEmacs was found there. | |
4271 */ ); | |
4272 | |
4273 #if 0 /* FSFmacs */ | |
776 | 4274 xxDEFVAR_LISP ("installation-directory", &Vinstallation_directory /* |
4275 A directory within which to look for the `lib-src' and `etc' directories. | |
4276 This is non-nil when we can't find those directories in their standard | |
4277 installed locations, but we can find them ear where the XEmacs executable | |
4278 was found. | |
4279 */ ); | |
428 | 4280 #endif |
4281 | |
4282 DEFVAR_LISP ("system-type", &Vsystem_type /* | |
4283 Symbol indicating type of operating system you are using. | |
4284 */ ); | |
4285 Vsystem_type = intern (SYSTEM_TYPE); | |
771 | 4286 Fprovide (Vsystem_type); |
428 | 4287 |
4288 #ifndef EMACS_CONFIGURATION | |
4289 # define EMACS_CONFIGURATION "UNKNOWN" | |
4290 #endif | |
4291 DEFVAR_LISP ("system-configuration", &Vsystem_configuration /* | |
4292 String naming the configuration XEmacs was built for. | |
4293 */ ); | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
4294 Vsystem_configuration = build_ascstring (EMACS_CONFIGURATION); |
428 | 4295 |
4296 #ifndef EMACS_CONFIG_OPTIONS | |
4297 # define EMACS_CONFIG_OPTIONS "UNKNOWN" | |
4298 #endif | |
4299 DEFVAR_LISP ("system-configuration-options", &Vsystem_configuration_options /* | |
4300 String containing the configuration options XEmacs was built with. | |
4301 */ ); | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
4302 Vsystem_configuration_options = build_ascstring (EMACS_CONFIG_OPTIONS); |
428 | 4303 |
4304 DEFVAR_LISP ("emacs-major-version", &Vemacs_major_version /* | |
4305 Major version number of this version of Emacs, as an integer. | |
4306 Warning: this variable did not exist in Emacs versions earlier than: | |
4307 FSF Emacs: 19.23 | |
4308 XEmacs: 19.10 | |
4309 */ ); | |
4310 Vemacs_major_version = make_int (EMACS_MAJOR_VERSION); | |
4311 | |
4312 DEFVAR_LISP ("emacs-minor-version", &Vemacs_minor_version /* | |
4313 Minor version number of this version of Emacs, as an integer. | |
4314 Warning: this variable did not exist in Emacs versions earlier than: | |
4315 FSF Emacs: 19.23 | |
4316 XEmacs: 19.10 | |
4317 */ ); | |
4318 Vemacs_minor_version = make_int (EMACS_MINOR_VERSION); | |
4319 | |
4320 DEFVAR_LISP ("emacs-patch-level", &Vemacs_patch_level /* | |
4321 The patch level of this version of Emacs, as an integer. | |
4322 The value is non-nil if this version of XEmacs is part of a series of | |
4323 stable XEmacsen, but has bug fixes applied. | |
4324 Warning: this variable does not exist in FSF Emacs or in XEmacs versions | |
4325 earlier than 21.1.1 | |
4326 */ ); | |
4327 #ifdef EMACS_PATCH_LEVEL | |
4328 Vemacs_patch_level = make_int (EMACS_PATCH_LEVEL); | |
4329 #else | |
4330 Vemacs_patch_level = Qnil; | |
4331 #endif | |
4332 | |
4333 DEFVAR_LISP ("emacs-beta-version", &Vemacs_beta_version /* | |
4334 Beta number of this version of Emacs, as an integer. | |
4335 The value is nil if this is an officially released version of XEmacs. | |
4336 Warning: this variable does not exist in FSF Emacs or in XEmacs versions | |
4337 earlier than 20.3. | |
4338 */ ); | |
4339 #ifdef EMACS_BETA_VERSION | |
4340 Vemacs_beta_version = make_int (EMACS_BETA_VERSION); | |
4341 #else | |
4342 Vemacs_beta_version = Qnil; | |
4343 #endif | |
4344 | |
4345 #ifdef INFODOCK | |
4346 DEFVAR_LISP ("infodock-major-version", &Vinfodock_major_version /* | |
4347 Major version number of this InfoDock release. | |
4348 */ ); | |
4349 Vinfodock_major_version = make_int (INFODOCK_MAJOR_VERSION); | |
4350 | |
4351 DEFVAR_LISP ("infodock-minor-version", &Vinfodock_minor_version /* | |
4352 Minor version number of this InfoDock release. | |
4353 */ ); | |
4354 Vinfodock_minor_version = make_int (INFODOCK_MINOR_VERSION); | |
4355 | |
4356 DEFVAR_LISP ("infodock-build-version", &Vinfodock_build_version /* | |
4357 Build version of this InfoDock release. | |
4358 */ ); | |
4359 Vinfodock_build_version = make_int (INFODOCK_BUILD_VERSION); | |
4360 #endif | |
4361 | |
4362 DEFVAR_LISP ("xemacs-codename", &Vxemacs_codename /* | |
4363 Codename of this version of Emacs (a string). | |
4364 */ ); | |
4365 #ifndef XEMACS_CODENAME | |
4366 #define XEMACS_CODENAME "Noname" | |
4367 #endif | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
4368 Vxemacs_codename = build_ascstring (XEMACS_CODENAME); |
428 | 4369 |
975 | 4370 DEFVAR_LISP ("xemacs-extra-name", &Vxemacs_extra_name /* |
2602 | 4371 Arbitrary string to place in the version string after the codename. |
4372 | |
4373 Appropriate surrounding whitespace will be added, but typically looks best | |
4374 if enclosed in parentheses. | |
4375 | |
4419
eb82fbb675ea
Use Mercurial changeset hash to identify build version.
Mike Sperber <sperber@deinprogramm.de>
parents:
4380
diff
changeset
|
4376 A standard use is to indicate the topmost hash id of the Mercurial |
eb82fbb675ea
Use Mercurial changeset hash to identify build version.
Mike Sperber <sperber@deinprogramm.de>
parents:
4380
diff
changeset
|
4377 changeset from which XEmacs was compiled. Developers may also use it |
eb82fbb675ea
Use Mercurial changeset hash to identify build version.
Mike Sperber <sperber@deinprogramm.de>
parents:
4380
diff
changeset
|
4378 to indicate particular branches, etc. |
975 | 4379 */ ); |
4380 #ifdef XEMACS_EXTRA_NAME | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
4381 Vxemacs_extra_name = build_ascstring (XEMACS_EXTRA_NAME); |
975 | 4382 #endif |
4383 | |
2602 | 4384 DEFVAR_LISP ("xemacs-release-date", &Vxemacs_release_date /* |
4385 ISO 8601 format date string giving the date of latest release in series. | |
4386 | |
4387 The time may optionally be given. The time zone may not be given, and | |
4388 is (implicitly) UTC. Currently not included in the version string. | |
4389 */ ); | |
4390 #ifndef XEMACS_RELEASE_DATE | |
4391 #define XEMACS_RELEASE_DATE "2005-02-18 (defaulted in emacs.c)" | |
4392 #endif | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
4393 Vxemacs_release_date = build_ascstring (XEMACS_RELEASE_DATE); |
2602 | 4394 |
442 | 4395 /* Lisp variables which contain command line flags. |
4396 | |
4397 The portable dumper stomps on these; they must be saved and restored | |
4398 if they are processed before the call to pdump_load() in main_1(). | |
4399 */ | |
428 | 4400 DEFVAR_BOOL ("noninteractive", &noninteractive1 /* |
4401 Non-nil means XEmacs is running without interactive terminal. | |
4402 */ ); | |
4403 | |
776 | 4404 DEFVAR_BOOL ("vanilla-inhibiting", &vanilla_inhibiting /* |
4405 Set to non-nil when the user-init and site-start files should not be loaded. | |
4406 */ ); | |
4407 | |
428 | 4408 DEFVAR_BOOL ("inhibit-early-packages", &inhibit_early_packages /* |
2602 | 4409 Set to non-nil when the early packages should be ignored at startup. |
4410 Early package directories will not be added to `load-path', nor set up as | |
4411 autoloads, nothing. | |
428 | 4412 */ ); |
4413 | |
776 | 4414 DEFVAR_BOOL ("inhibit-all-packages", &inhibit_all_packages /* |
2602 | 4415 Set to non-nil when all packages should be ignored at startup. |
4416 Package directories will not be added to `load-path', nor set up as | |
776 | 4417 autoloads, nothing. |
4418 */ ); | |
4419 | |
428 | 4420 DEFVAR_BOOL ("inhibit-autoloads", &inhibit_autoloads /* |
4421 Set to non-nil when autoloads should not be loaded at startup. | |
4422 */ ); | |
4423 | |
4424 DEFVAR_BOOL ("debug-paths", &debug_paths /* | |
4425 Set to non-nil when debug information about paths should be printed. | |
4426 */ ); | |
4427 | |
4428 DEFVAR_BOOL ("inhibit-site-lisp", &inhibit_site_lisp /* | |
4429 Set to non-nil when the site-lisp should not be searched at startup. | |
4430 */ ); | |
4431 #ifdef INHIBIT_SITE_LISP | |
4432 inhibit_site_lisp = 1; | |
4433 #endif | |
4434 | |
4435 DEFVAR_BOOL ("inhibit-site-modules", &inhibit_site_modules /* | |
4436 Set to non-nil when site-modules should not be searched at startup. | |
4437 */ ); | |
4438 #ifdef INHIBIT_SITE_MODULES | |
4439 inhibit_site_modules = 1; | |
4440 #endif | |
4441 | |
4442 DEFVAR_INT ("emacs-priority", &emacs_priority /* | |
4443 Priority for XEmacs to run at. | |
4444 This value is effective only if set before XEmacs is dumped, | |
4445 and only if the XEmacs executable is installed with setuid to permit | |
4446 it to change priority. (XEmacs sets its uid back to the real uid.) | |
4447 Currently, you need to define SET_EMACS_PRIORITY in `config.h' | |
4448 before you compile XEmacs, to enable the code for this feature. | |
4449 */ ); | |
4450 emacs_priority = 0; | |
4451 | |
4452 DEFVAR_CONST_LISP ("internal-error-checking", &Vinternal_error_checking /* | |
4453 Internal error checking built-in into this instance of XEmacs. | |
4454 This is a list of symbols, initialized at build-time. Legal symbols | |
4455 are: | |
4456 | |
4457 extents - check extents prior to each extent change; | |
800 | 4458 types - check types strictly; |
428 | 4459 malloc - check operation of malloc; |
4460 gc - check garbage collection; | |
800 | 4461 text - check text and buffer positions; |
4462 display - check redisplay structure consistency; | |
4463 glyphs - check glyph structure consistency; | |
4464 byte-code - check byte-code consistency;. | |
4465 structures - check other structure consistency. | |
442 | 4466 |
4467 quick-build - user has requested the "quick-build" configure option. | |
428 | 4468 */ ); |
4469 Vinternal_error_checking = Qnil; | |
4470 #ifdef ERROR_CHECK_EXTENTS | |
4471 Vinternal_error_checking = Fcons (intern ("extents"), | |
4472 Vinternal_error_checking); | |
4473 #endif | |
800 | 4474 #ifdef ERROR_CHECK_TYPES |
4475 Vinternal_error_checking = Fcons (intern ("types"), | |
428 | 4476 Vinternal_error_checking); |
4477 #endif | |
4478 #ifdef ERROR_CHECK_MALLOC | |
4479 Vinternal_error_checking = Fcons (intern ("malloc"), | |
4480 Vinternal_error_checking); | |
4481 #endif | |
4482 #ifdef ERROR_CHECK_GC | |
4483 Vinternal_error_checking = Fcons (intern ("gc"), | |
4484 Vinternal_error_checking); | |
4485 #endif | |
800 | 4486 #ifdef ERROR_CHECK_TEXT |
4487 Vinternal_error_checking = Fcons (intern ("text"), | |
4488 Vinternal_error_checking); | |
4489 #endif | |
4490 #ifdef ERROR_CHECK_DISPLAY | |
4491 Vinternal_error_checking = Fcons (intern ("display"), | |
4492 Vinternal_error_checking); | |
4493 #endif | |
4494 #ifdef ERROR_CHECK_GLYPHS | |
4495 Vinternal_error_checking = Fcons (intern ("glyphs"), | |
4496 Vinternal_error_checking); | |
4497 #endif | |
4498 #ifdef ERROR_CHECK_BYTE_CODE | |
4499 Vinternal_error_checking = Fcons (intern ("byte-code"), | |
4500 Vinternal_error_checking); | |
4501 #endif | |
4502 #ifdef ERROR_CHECK_STRUCTURES | |
4503 Vinternal_error_checking = Fcons (intern ("structures"), | |
428 | 4504 Vinternal_error_checking); |
4505 #endif | |
442 | 4506 #ifdef QUICK_BUILD |
4507 Vinternal_error_checking = Fcons (intern ("quick-build"), | |
4508 Vinternal_error_checking); | |
4509 #endif | |
428 | 4510 |
438 | 4511 DEFVAR_CONST_LISP ("mail-lock-methods", &Vmail_lock_methods /* |
4512 Mail spool locking methods supported by this instance of XEmacs. | |
4513 This is a list of symbols. Each of the symbols is one of the | |
4514 following: dot, lockf, flock, locking, mmdf. | |
4515 */ ); | |
4516 { | |
4517 Vmail_lock_methods = Qnil; | |
4518 Vmail_lock_methods = Fcons (intern ("dot"), Vmail_lock_methods); | |
4519 #ifdef HAVE_LOCKF | |
4520 Vmail_lock_methods = Fcons (intern ("lockf"), Vmail_lock_methods); | |
4521 #endif | |
4522 #ifdef HAVE_FLOCK | |
4523 Vmail_lock_methods = Fcons (intern ("flock"), Vmail_lock_methods); | |
4524 #endif | |
4525 #ifdef HAVE_MMDF | |
4526 Vmail_lock_methods = Fcons (intern ("mmdf"), Vmail_lock_methods); | |
4527 #endif | |
4528 #ifdef HAVE_LOCKING | |
4529 Vmail_lock_methods = Fcons (intern ("locking"), Vmail_lock_methods); | |
4530 #endif | |
4531 } | |
442 | 4532 |
438 | 4533 DEFVAR_CONST_LISP ("configure-mail-lock-method", &Vconfigure_mail_lock_method /* |
4534 Mail spool locking method suggested by configure. This is one | |
4535 of the symbols in MAIL-LOCK-METHODS. | |
4536 */ ); | |
4537 { | |
1303 | 4538 #if defined (MAIL_LOCK_FLOCK) && defined (HAVE_FLOCK) |
771 | 4539 Vconfigure_mail_lock_method = intern ("flock"); |
1303 | 4540 #elif defined (MAIL_LOCK_LOCKF) && defined (HAVE_LOCKF) |
771 | 4541 Vconfigure_mail_lock_method = intern ("lockf"); |
1303 | 4542 #elif defined (MAIL_LOCK_MMDF) && defined (HAVE_MMDF) |
771 | 4543 Vconfigure_mail_lock_method = intern ("mmdf"); |
1303 | 4544 #elif defined (MAIL_LOCK_LOCKING) && defined (HAVE_LOCKING) |
771 | 4545 Vconfigure_mail_lock_method = intern ("locking"); |
438 | 4546 #else |
771 | 4547 Vconfigure_mail_lock_method = intern ("dot"); |
438 | 4548 #endif |
4549 } | |
428 | 4550 } |
4551 | |
4552 void | |
4553 complex_vars_of_emacs (void) | |
4554 { | |
4555 /* This is all related to path searching. */ | |
4556 | |
4557 DEFVAR_LISP ("emacs-program-name", &Vemacs_program_name /* | |
4558 *Name of the Emacs variant. | |
4559 For example, this may be \"xemacs\" or \"infodock\". | |
4560 This is mainly meant for use in path searching. | |
4561 */ ); | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4562 Vemacs_program_name = build_extstring (PATH_PROGNAME, Qfile_name); |
428 | 4563 |
4564 DEFVAR_LISP ("emacs-program-version", &Vemacs_program_version /* | |
4565 *Version of the Emacs variant. | |
444 | 4566 This typically has the form NN.NN-bNN. |
428 | 4567 This is mainly meant for use in path searching. |
4568 */ ); | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4569 Vemacs_program_version = build_extstring (PATH_VERSION, Qfile_name); |
428 | 4570 |
4571 DEFVAR_LISP ("exec-path", &Vexec_path /* | |
4572 *List of directories to search programs to run in subprocesses. | |
4573 Each element is a string (directory name) or nil (try default directory). | |
4574 */ ); | |
4575 Vexec_path = Qnil; | |
4576 | |
4577 DEFVAR_LISP ("exec-directory", &Vexec_directory /* | |
4578 *Directory of architecture-dependent files that come with XEmacs, | |
4579 especially executable programs intended for XEmacs to invoke. | |
4580 */ ); | |
4581 Vexec_directory = Qnil; | |
4582 | |
4583 DEFVAR_LISP ("configure-exec-directory", &Vconfigure_exec_directory /* | |
4584 For internal use by the build procedure only. | |
444 | 4585 configure's idea of what `exec-directory' will be. |
428 | 4586 */ ); |
4587 #ifdef PATH_EXEC | |
4588 Vconfigure_exec_directory = Ffile_name_as_directory | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4589 (build_extstring (PATH_EXEC, Qfile_name)); |
428 | 4590 #else |
4591 Vconfigure_exec_directory = Qnil; | |
4592 #endif | |
4593 | |
4594 DEFVAR_LISP ("lisp-directory", &Vlisp_directory /* | |
4595 *Directory of core Lisp files that come with XEmacs. | |
4596 */ ); | |
4597 Vlisp_directory = Qnil; | |
4598 | |
4599 DEFVAR_LISP ("configure-lisp-directory", &Vconfigure_lisp_directory /* | |
4600 For internal use by the build procedure only. | |
444 | 4601 configure's idea of what `lisp-directory' will be. |
428 | 4602 */ ); |
4603 #ifdef PATH_LOADSEARCH | |
4604 Vconfigure_lisp_directory = Ffile_name_as_directory | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4605 (build_extstring (PATH_LOADSEARCH, Qfile_name)); |
428 | 4606 #else |
4607 Vconfigure_lisp_directory = Qnil; | |
4608 #endif | |
4609 | |
460 | 4610 DEFVAR_LISP ("mule-lisp-directory", &Vmule_lisp_directory /* |
4611 *Directory of Mule Lisp files that come with XEmacs. | |
4612 */ ); | |
4613 Vmule_lisp_directory = Qnil; | |
4614 | |
4615 DEFVAR_LISP ("configure-mule-lisp-directory", &Vconfigure_mule_lisp_directory /* | |
4616 For internal use by the build procedure only. | |
4617 configure's idea of what `mule-lisp-directory' will be. | |
4618 */ ); | |
4619 #ifdef PATH_MULELOADSEARCH | |
4620 Vconfigure_mule_lisp_directory = Ffile_name_as_directory | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4621 (build_extstring (PATH_MULELOADSEARCH, Qfile_name); |
460 | 4622 #else |
4623 Vconfigure_mule_lisp_directory = Qnil; | |
4624 #endif | |
4625 | |
428 | 4626 DEFVAR_LISP ("module-directory", &Vmodule_directory /* |
4627 *Directory of core dynamic modules that come with XEmacs. | |
4628 */ ); | |
4629 Vmodule_directory = Qnil; | |
4630 | |
4631 DEFVAR_LISP ("configure-module-directory", &Vconfigure_module_directory /* | |
4632 For internal use by the build procedure only. | |
444 | 4633 configure's idea of what `module-directory' will be. |
428 | 4634 */ ); |
4635 #ifdef PATH_MODULESEARCH | |
4636 Vconfigure_module_directory = Ffile_name_as_directory | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4637 (build_extstring (PATH_MODULESEARCH, Qfile_name)); |
428 | 4638 #else |
4639 Vconfigure_module_directory = Qnil; | |
4640 #endif | |
4641 | |
3179 | 4642 DEFVAR_LISP ("configure-early-package-directories", &Vconfigure_early_package_directories /* |
4643 For internal use by the build procedure only. | |
4644 configure's idea of what the early package directories will be. | |
4645 */ ); | |
4646 #ifdef PATH_EARLY_PACKAGE_DIRECTORIES | |
4647 Vconfigure_early_package_directories = split_external_path (PATH_EARLY_PACKAGE_DIRECTORIES); | |
4648 #else | |
4649 Vconfigure_early_package_directories = Qnil; | |
4650 #endif | |
4651 | |
4652 DEFVAR_LISP ("configure-late-package-directories", &Vconfigure_late_package_directories /* | |
4653 For internal use by the build procedure only. | |
4654 configure's idea of what the late package directories will be. | |
4655 */ ); | |
4656 #ifdef PATH_LATE_PACKAGE_DIRECTORIES | |
4657 Vconfigure_late_package_directories = split_external_path (PATH_LATE_PACKAGE_DIRECTORIES); | |
4658 #else | |
4659 Vconfigure_late_package_directories = Qnil; | |
4660 #endif | |
4661 | |
4662 DEFVAR_LISP ("configure-last-package-directories", &Vconfigure_last_package_directories /* | |
4663 For internal use by the build procedure only. | |
4664 configure's idea of what the last package directories will be. | |
4665 */ ); | |
4666 #ifdef PATH_LAST_PACKAGE_DIRECTORIES | |
4667 Vconfigure_last_package_directories = split_external_path (PATH_LAST_PACKAGE_DIRECTORIES); | |
4668 #else | |
4669 Vconfigure_last_package_directories = Qnil; | |
4670 #endif | |
4671 | |
428 | 4672 DEFVAR_LISP ("configure-package-path", &Vconfigure_package_path /* |
4673 For internal use by the build procedure only. | |
4674 configure's idea of what the package path will be. | |
4675 */ ); | |
4676 #ifdef PATH_PACKAGEPATH | |
771 | 4677 Vconfigure_package_path = split_external_path (PATH_PACKAGEPATH); |
428 | 4678 #else |
4679 Vconfigure_package_path = Qnil; | |
4680 #endif | |
4681 | |
4682 DEFVAR_LISP ("data-directory", &Vdata_directory /* | |
4683 *Directory of architecture-independent files that come with XEmacs, | |
4684 intended for XEmacs to use. | |
4685 Use of this variable in new code is almost never correct. See the | |
442 | 4686 functions `locate-data-file' and `locate-data-directory' and the variable |
4687 `data-directory-list'. | |
428 | 4688 */ ); |
4689 Vdata_directory = Qnil; | |
4690 | |
4691 DEFVAR_LISP ("configure-data-directory", &Vconfigure_data_directory /* | |
4692 For internal use by the build procedure only. | |
444 | 4693 configure's idea of what `data-directory' will be. |
428 | 4694 */ ); |
4695 #ifdef PATH_DATA | |
4696 Vconfigure_data_directory = Ffile_name_as_directory | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4697 (build_extstring (PATH_DATA, Qfile_name)); |
428 | 4698 #else |
4699 Vconfigure_data_directory = Qnil; | |
4700 #endif | |
4701 | |
4702 DEFVAR_LISP ("data-directory-list", &Vdata_directory_list /* | |
4703 *List of directories of architecture-independent files that come with XEmacs | |
4704 or were installed as packages, and are intended for XEmacs to use. | |
4705 */ ); | |
4706 Vdata_directory_list = Qnil; | |
4707 | |
4708 DEFVAR_LISP ("site-directory", &Vsite_directory /* | |
4709 *Directory of site-specific Lisp files that come with XEmacs. | |
4710 */ ); | |
4711 Vsite_directory = Qnil; | |
4712 | |
4713 DEFVAR_LISP ("configure-site-directory", &Vconfigure_site_directory /* | |
4714 For internal use by the build procedure only. | |
444 | 4715 configure's idea of what `site-directory' will be. |
428 | 4716 */ ); |
4717 #ifdef PATH_SITE | |
4718 Vconfigure_site_directory = Ffile_name_as_directory | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4719 (build_extstring (PATH_SITE, Qfile_name)); |
428 | 4720 #else |
4721 Vconfigure_site_directory = Qnil; | |
4722 #endif | |
4723 | |
4724 DEFVAR_LISP ("site-module-directory", &Vsite_module_directory /* | |
4725 *Directory of site-specific loadable modules that come with XEmacs. | |
4726 */ ); | |
4727 Vsite_module_directory = Qnil; | |
4728 | |
4729 DEFVAR_LISP ("configure-site-module-directory", &Vconfigure_site_module_directory /* | |
4730 For internal use by the build procedure only. | |
444 | 4731 configure's idea of what `site-directory' will be. |
428 | 4732 */ ); |
4733 #ifdef PATH_SITE_MODULES | |
4734 Vconfigure_site_module_directory = Ffile_name_as_directory | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4735 (build_extstring (PATH_SITE_MODULES, Qfile_name)); |
428 | 4736 #else |
4737 Vconfigure_site_module_directory = Qnil; | |
4738 #endif | |
4739 | |
4740 DEFVAR_LISP ("doc-directory", &Vdoc_directory /* | |
4741 *Directory containing the DOC file that comes with XEmacs. | |
444 | 4742 This is usually the same as `exec-directory'. |
428 | 4743 */ ); |
4744 Vdoc_directory = Qnil; | |
4745 | |
4746 DEFVAR_LISP ("configure-doc-directory", &Vconfigure_doc_directory /* | |
4747 For internal use by the build procedure only. | |
444 | 4748 configure's idea of what `doc-directory' will be. |
428 | 4749 */ ); |
4750 #ifdef PATH_DOC | |
4751 Vconfigure_doc_directory = Ffile_name_as_directory | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4752 (build_extstring (PATH_DOC, Qfile_name)); |
428 | 4753 #else |
4754 Vconfigure_doc_directory = Qnil; | |
4755 #endif | |
4756 | |
4757 DEFVAR_LISP ("configure-exec-prefix-directory", &Vconfigure_exec_prefix_directory /* | |
4758 For internal use by the build procedure only. | |
444 | 4759 configure's idea of what `exec-prefix-directory' will be. |
428 | 4760 */ ); |
4761 #ifdef PATH_EXEC_PREFIX | |
4762 Vconfigure_exec_prefix_directory = Ffile_name_as_directory | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4763 (build_extstring (PATH_EXEC_PREFIX, Qfile_name)); |
428 | 4764 #else |
4765 Vconfigure_exec_prefix_directory = Qnil; | |
4766 #endif | |
4767 | |
4768 DEFVAR_LISP ("configure-prefix-directory", &Vconfigure_prefix_directory /* | |
4769 For internal use by the build procedure only. | |
444 | 4770 configure's idea of what `prefix-directory' will be. |
428 | 4771 */ ); |
4772 #ifdef PATH_PREFIX | |
4773 Vconfigure_prefix_directory = Ffile_name_as_directory | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4774 (build_extstring (PATH_PREFIX, Qfile_name)); |
428 | 4775 #else |
4776 Vconfigure_prefix_directory = Qnil; | |
4777 #endif | |
4778 | |
4779 DEFVAR_LISP ("configure-info-directory", &Vconfigure_info_directory /* | |
4780 For internal use by the build procedure only. | |
4781 This is the name of the directory in which the build procedure installed | |
4782 Emacs's info files; the default value for Info-default-directory-list | |
4783 includes this. | |
4784 */ ); | |
4785 #ifdef PATH_INFO | |
4786 Vconfigure_info_directory = | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4787 Ffile_name_as_directory (build_extstring (PATH_INFO, Qfile_name)); |
428 | 4788 #else |
4789 Vconfigure_info_directory = Qnil; | |
4790 #endif | |
4791 | |
4792 DEFVAR_LISP ("configure-info-path", &Vconfigure_info_path /* | |
4793 The configured initial path for info documentation. | |
4794 */ ); | |
4795 #ifdef PATH_INFOPATH | |
771 | 4796 Vconfigure_info_path = split_external_path (PATH_INFOPATH); |
428 | 4797 #else |
4798 Vconfigure_info_path = Qnil; | |
4799 #endif | |
4800 } | |
4801 | |
1303 | 4802 #if defined (__sgi) && !defined (PDUMP) |
428 | 4803 /* This is so tremendously ugly I'd puke. But then, it works. |
4804 * The target is to override the static constructor from the | |
442 | 4805 * libiflPNG.so library which is masquerading as libz, and |
428 | 4806 * cores on us when re-started from the dumped executable. |
4807 * This will have to go for 21.1 -- OG. | |
4808 */ | |
446 | 4809 void __sti__iflPNGFile_c___ (void); |
4810 void | |
4811 __sti__iflPNGFile_c___ (void) | |
428 | 4812 { |
4813 } | |
4814 | |
4815 #endif | |
771 | 4816 |
2210 | 4817 DOESNT_RETURN |
771 | 4818 really_abort (void) |
4819 { | |
4820 abort (); | |
4821 } |