From: Ken Brown Date: Tue, 16 Aug 2011 20:31:32 +0000 (-0400) Subject: * src/gmalloc.c: Expand comment. X-Git-Tag: emacs-pretest-24.0.90~104^2~124^2~28 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=db76dd852eb54c00a6d8350acb2ceb63a6559248;p=emacs.git * src/gmalloc.c: Expand comment. --- diff --git a/src/ChangeLog b/src/ChangeLog index 5bc07722191..ac9864f9f95 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2011-08-16 Ken Brown + + * gmalloc.c: Expand comment. + 2011-08-16 Eli Zaretskii * xdisp.c (set_cursor_from_row): Don't accept a previous candidate diff --git a/src/gmalloc.c b/src/gmalloc.c index 61046ad9d1b..d49259b8ed7 100644 --- a/src/gmalloc.c +++ b/src/gmalloc.c @@ -356,7 +356,11 @@ Fifth Floor, Boston, MA 02110-1301, USA. emacs uses the Cygwin heap (managed with sbrk). When emacs starts on Cygwin, it reinitializes malloc, and we save the old info for use by free and realloc if they're called with a pointer into the - static heap. */ + static heap. + + Currently (2011-08-16) the Cygwin build doesn't use ralloc.c; if + this is changed in the future, we'll have to similarly deal with + reinitializing ralloc. */ #ifdef CYGWIN extern __ptr_t bss_sbrk PP ((ptrdiff_t __size)); extern int bss_sbrk_did_unexec;