Mercurial > hg > xemacs-beta
comparison src/malloc.c @ 2:ac2d302a0011 r19-15b2
Import from CVS: tag r19-15b2
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:46:35 +0200 |
parents | 376386a54a3c |
children | 15872534500d |
comparison
equal
deleted
inserted
replaced
1:c0c6a60d29db | 2:ac2d302a0011 |
---|---|
361 | 361 |
362 /* Find current end of memory and issue warning if getting near max */ | 362 /* Find current end of memory and issue warning if getting near max */ |
363 | 363 |
364 #ifndef VMS | 364 #ifndef VMS |
365 /* Maximum virtual memory on VMS is difficult to calculate since it | 365 /* Maximum virtual memory on VMS is difficult to calculate since it |
366 * depends on several dynmacially changing things. Also, alignment | 366 * depends on several dynamically changing things. Also, alignment |
367 * isn't that important. That is why much of the code here is ifdef'ed | 367 * isn't that important. That is why much of the code here is ifdef'ed |
368 * out for VMS systems. | 368 * out for VMS systems. |
369 */ | 369 */ |
370 cp = sbrk (0); | 370 cp = sbrk (0); |
371 siz = cp - data_space_start; | 371 siz = cp - data_space_start; |