Mercurial > emacs
annotate src/sheap.c @ 83425:c82829d08b89
Fix semantics of let-binding `process-environment'.
* lisp/env.el: Require cl for byte compilation. (For `block' and `return'.)
(read-envvar-name): Update for rename. Include `process-environment'
as well.
(setenv): Update for rename also handle `process-environment'. Update doc.
(getenv): Update doc.
(environment): New function.
(let-environment): New macro.
* lisp/font-lock.el (lisp-font-lock-keywords-2): Add `let-environment'.
* src/callproc.c (Vglobal_environment): New variable, taking over the
previous role of `Vprocess_environment', which is now something else.
(add_env): New function.
(child_setup): Use it.
(child_setup, getenv_internal): Rename Vprocess_environment to
Vglobal_environment. Handle the new Vprocess_environment.
(Fgetenv_internal, egetenv): Update doc.
(set_process_environment): Rename to `set_global_environment'. Rename
Vprocess_environment to Vglobal_environment.
(syms_of_callproc): Rename process-environment to global-environment,
add new process-environment, update docs.
* src/emacs.c (main): Call set_global_environment instead of
set_process_environment.
* fileio.c (Fread_file_name): Update comment.
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-465
author | Karoly Lorentey <lorentey@elte.hu> |
---|---|
date | Thu, 29 Dec 2005 01:28:33 +0000 |
parents | d74deb025f5a |
children | 3bd95f4f2941 7beb78bc1f8e |
rev | line source |
---|---|
66663
d74deb025f5a
(STATIC_HEAP_SIZE): Increment both definitions.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
1 /* simulate `sbrk' with an array in .bss, for `unexec' support for Cygwin; |
d74deb025f5a
(STATIC_HEAP_SIZE): Increment both definitions.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
2 complete rewrite of xemacs Cygwin `unexec' code |
54844 | 3 |
64770
a0d1312ede66
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64084
diff
changeset
|
4 Copyright (C) 2004, 2005 Free Software Foundation, Inc. |
54844 | 5 |
6 This file is part of GNU Emacs. | |
7 | |
8 GNU Emacs is free software; you can redistribute it and/or modify | |
9 it under the terms of the GNU General Public License as published by | |
10 the Free Software Foundation; either version 2, or (at your option) | |
11 any later version. | |
12 | |
13 GNU Emacs is distributed in the hope that it will be useful, | |
14 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 GNU General Public License for more details. | |
17 | |
18 You should have received a copy of the GNU General Public License | |
19 along with GNU Emacs; see the file COPYING. If not, write to | |
64084 | 20 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
21 Boston, MA 02110-1301, USA. */ | |
54844 | 22 |
23 #include <config.h> | |
24 #include <stdio.h> | |
25 #include "lisp.h" | |
26 | |
27 #include <unistd.h> | |
28 | |
29 #ifdef HAVE_X_WINDOWS | |
66663
d74deb025f5a
(STATIC_HEAP_SIZE): Increment both definitions.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
30 #define STATIC_HEAP_SIZE (8 * 1024 * 1024) |
54844 | 31 #else |
66663
d74deb025f5a
(STATIC_HEAP_SIZE): Increment both definitions.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
32 #define STATIC_HEAP_SIZE (8 * 1024 * 1024) |
54844 | 33 #endif |
34 | |
35 int debug_sheap = 0; | |
36 | |
37 #define BLOCKSIZE 4096 | |
38 | |
39 char bss_sbrk_buffer[STATIC_HEAP_SIZE]; | |
40 char *bss_sbrk_ptr; | |
41 int bss_sbrk_did_unexec; | |
42 | |
43 void * | |
44 bss_sbrk (ptrdiff_t request_size) | |
45 { | |
46 if (!bss_sbrk_ptr) | |
47 { | |
48 bss_sbrk_ptr = bss_sbrk_buffer; | |
49 #ifdef CYGWIN | |
50 sbrk (BLOCKSIZE); /* force space for fork to work */ | |
51 #endif | |
52 } | |
53 | |
54 if (!(int) request_size) | |
55 { | |
56 return (bss_sbrk_ptr); | |
57 } | |
58 else if (bss_sbrk_ptr + (int) request_size < bss_sbrk_buffer) | |
59 { | |
60 printf | |
61 ("attempt to free too much: avail %d used %d failed request %d\n", | |
62 STATIC_HEAP_SIZE, bss_sbrk_ptr - bss_sbrk_buffer, | |
63 (int) request_size); | |
64 exit (-1); | |
65 return 0; | |
66 } | |
67 else if (bss_sbrk_ptr + (int) request_size > | |
68 bss_sbrk_buffer + STATIC_HEAP_SIZE) | |
69 { | |
70 printf ("static heap exhausted: avail %d used %d failed request %d\n", | |
71 STATIC_HEAP_SIZE, | |
72 bss_sbrk_ptr - bss_sbrk_buffer, (int) request_size); | |
73 exit (-1); | |
74 return 0; | |
75 } | |
76 else if ((int) request_size < 0) | |
77 { | |
78 bss_sbrk_ptr += (int) request_size; | |
79 if (debug_sheap) | |
80 printf ("freed size %d\n", request_size); | |
81 return bss_sbrk_ptr; | |
82 } | |
83 else | |
84 { | |
85 char *ret = bss_sbrk_ptr; | |
86 if (debug_sheap) | |
87 printf ("allocated 0x%08x size %d\n", ret, request_size); | |
88 bss_sbrk_ptr += (int) request_size; | |
89 return ret; | |
90 } | |
91 } | |
92 | |
93 void | |
94 report_sheap_usage (int die_if_pure_storage_exceeded) | |
95 { | |
96 char buf[200]; | |
97 sprintf (buf, "Static heap usage: %d of %d bytes", | |
98 bss_sbrk_ptr - bss_sbrk_buffer, STATIC_HEAP_SIZE); | |
99 message ("%s", buf); | |
100 } | |
54858
44a3fff23885
Changes from arch/CVS synchronization
Miles Bader <miles@gnu.org>
parents:
54844
diff
changeset
|
101 |
44a3fff23885
Changes from arch/CVS synchronization
Miles Bader <miles@gnu.org>
parents:
54844
diff
changeset
|
102 /* arch-tag: 1bc386e8-71c2-4da4-b8b5-c1674a9cf926 |
44a3fff23885
Changes from arch/CVS synchronization
Miles Bader <miles@gnu.org>
parents:
54844
diff
changeset
|
103 (do not change this comment) */ |