]> code.delx.au - gnu-emacs/blobdiff - src/sheap.c
*** empty log message ***
[gnu-emacs] / src / sheap.c
index e8ec8a00fd2c7a8d0ea31e1eb25561de924a7ee8..03da2afa81359677516cf32051a753158c4b570b 100644 (file)
@@ -1,8 +1,7 @@
-/* simulate sbrk() with an array in .bss, for unexec() support for Cygwin;
-   complete rewrite of xemacs Cygwin unexec() code
+/* simulate `sbrk' with an array in .bss, for `unexec' support for Cygwin;
+   complete rewrite of xemacs Cygwin `unexec' code
 
-   Copyright (C) 2004
-   Free Software Foundation, Inc.
+   Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
 
@@ -18,8 +17,8 @@ GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
 along with GNU Emacs; see the file COPYING.  If not, write to
-the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.  */
+the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+Boston, MA 02110-1301, USA.  */
 
 #include <config.h>
 #include <stdio.h>
@@ -27,11 +26,7 @@ Boston, MA 02111-1307, USA.  */
 
 #include <unistd.h>
 
-#ifdef HAVE_X_WINDOWS
-#define STATIC_HEAP_SIZE       (7 * 1024 * 1024)
-#else
-#define STATIC_HEAP_SIZE       (7 * 1024 * 1024)
-#endif
+#define STATIC_HEAP_SIZE       (12 * 1024 * 1024)
 
 int debug_sheap = 0;
 
@@ -99,3 +94,6 @@ report_sheap_usage (int die_if_pure_storage_exceeded)
           bss_sbrk_ptr - bss_sbrk_buffer, STATIC_HEAP_SIZE);
   message ("%s", buf);
 }
+
+/* arch-tag: 1bc386e8-71c2-4da4-b8b5-c1674a9cf926
+   (do not change this comment) */