1 /* simulate sbrk() with an array in .bss, for unexec() support for Cygwin;
2 complete rewrite of xemacs Cygwin unexec() code
5 Free Software Foundation, Inc.
7 This file is part of GNU Emacs.
9 GNU Emacs is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2, or (at your option)
14 GNU Emacs is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GNU Emacs; see the file COPYING. If not, write to
21 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
31 #define STATIC_HEAP_SIZE (7 * 1024 * 1024)
33 #define STATIC_HEAP_SIZE (7 * 1024 * 1024)
38 #define BLOCKSIZE 4096
40 char bss_sbrk_buffer
[STATIC_HEAP_SIZE
];
42 int bss_sbrk_did_unexec
;
45 bss_sbrk (ptrdiff_t request_size
)
49 bss_sbrk_ptr
= bss_sbrk_buffer
;
51 sbrk (BLOCKSIZE
); /* force space for fork to work */
55 if (!(int) request_size
)
57 return (bss_sbrk_ptr
);
59 else if (bss_sbrk_ptr
+ (int) request_size
< bss_sbrk_buffer
)
62 ("attempt to free too much: avail %d used %d failed request %d\n",
63 STATIC_HEAP_SIZE
, bss_sbrk_ptr
- bss_sbrk_buffer
,
68 else if (bss_sbrk_ptr
+ (int) request_size
>
69 bss_sbrk_buffer
+ STATIC_HEAP_SIZE
)
71 printf ("static heap exhausted: avail %d used %d failed request %d\n",
73 bss_sbrk_ptr
- bss_sbrk_buffer
, (int) request_size
);
77 else if ((int) request_size
< 0)
79 bss_sbrk_ptr
+= (int) request_size
;
81 printf ("freed size %d\n", request_size
);
86 char *ret
= bss_sbrk_ptr
;
88 printf ("allocated 0x%08x size %d\n", ret
, request_size
);
89 bss_sbrk_ptr
+= (int) request_size
;
95 report_sheap_usage (int die_if_pure_storage_exceeded
)
98 sprintf (buf
, "Static heap usage: %d of %d bytes",
99 bss_sbrk_ptr
- bss_sbrk_buffer
, STATIC_HEAP_SIZE
);
103 /* arch-tag: 1bc386e8-71c2-4da4-b8b5-c1674a9cf926
104 (do not change this comment) */