diff options
author | Ken Brown <kbrown@cornell.edu> | 2011-08-16 16:31:32 -0400 |
---|---|---|
committer | Ken Brown <kbrown@cornell.edu> | 2011-08-16 16:31:32 -0400 |
commit | db76dd852eb54c00a6d8350acb2ceb63a6559248 (patch) | |
tree | b3bf22b6c9ebcd21adc1f9ba121466947daa9dbb /src/gmalloc.c | |
parent | 9c4aeabf550b825ddfd501b49d5df0c31ab6b446 (diff) | |
download | emacs-db76dd852eb54c00a6d8350acb2ceb63a6559248.tar.gz |
* src/gmalloc.c: Expand comment.
Diffstat (limited to 'src/gmalloc.c')
-rw-r--r-- | src/gmalloc.c | 6 |
1 files changed, 5 insertions, 1 deletions
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; |