diff options
| author | Ken Brown | 2014-09-28 18:31:59 -0400 |
|---|---|---|
| committer | Ken Brown | 2014-09-28 18:31:59 -0400 |
| commit | c3301e3c7f146a3aa017fa24f6ed240d6ecbafb4 (patch) | |
| tree | 10ac8668b65148fffacf794b7e77c2a065a01265 /src/sheap.c | |
| parent | 3ff1c9a8ea8e7b792f89b807af056f6bf22c4b43 (diff) | |
| download | emacs-c3301e3c7f146a3aa017fa24f6ed240d6ecbafb4.tar.gz emacs-c3301e3c7f146a3aa017fa24f6ed240d6ecbafb4.zip | |
* src/sheap.c (bss_sbrk_buffer_beg): Remove redundant variable.
* src/gmalloc.c [CYGWIN]: Adapt to change in sheap.c.
Diffstat (limited to 'src/sheap.c')
| -rw-r--r-- | src/sheap.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/sheap.c b/src/sheap.c index 2c85dd43635..956faa36aa1 100644 --- a/src/sheap.c +++ b/src/sheap.c | |||
| @@ -44,8 +44,7 @@ int debug_sheap = 0; | |||
| 44 | #define BLOCKSIZE 4096 | 44 | #define BLOCKSIZE 4096 |
| 45 | 45 | ||
| 46 | char bss_sbrk_buffer[STATIC_HEAP_SIZE]; | 46 | char bss_sbrk_buffer[STATIC_HEAP_SIZE]; |
| 47 | /* The following two variables are needed in gmalloc.c */ | 47 | /* The following is needed in gmalloc.c */ |
| 48 | void *bss_sbrk_buffer_beg = bss_sbrk_buffer; | ||
| 49 | void *bss_sbrk_buffer_end = bss_sbrk_buffer + STATIC_HEAP_SIZE; | 48 | void *bss_sbrk_buffer_end = bss_sbrk_buffer + STATIC_HEAP_SIZE; |
| 50 | char *bss_sbrk_ptr; | 49 | char *bss_sbrk_ptr; |
| 51 | char *max_bss_sbrk_ptr; | 50 | char *max_bss_sbrk_ptr; |