diff options
Diffstat (limited to 'src/lisp.h')
| -rw-r--r-- | src/lisp.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/lisp.h b/src/lisp.h index 6be2104ef9e..82cbca8e6ba 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -3590,6 +3590,7 @@ extern void parse_str_as_multibyte (const unsigned char *, ptrdiff_t, | |||
| 3590 | ptrdiff_t *, ptrdiff_t *); | 3590 | ptrdiff_t *, ptrdiff_t *); |
| 3591 | 3591 | ||
| 3592 | /* Defined in alloc.c. */ | 3592 | /* Defined in alloc.c. */ |
| 3593 | extern void *my_heap_start (void); | ||
| 3593 | extern void check_pure_size (void); | 3594 | extern void check_pure_size (void); |
| 3594 | extern void free_misc (Lisp_Object); | 3595 | extern void free_misc (Lisp_Object); |
| 3595 | extern void allocate_string_data (struct Lisp_String *, EMACS_INT, EMACS_INT); | 3596 | extern void allocate_string_data (struct Lisp_String *, EMACS_INT, EMACS_INT); |
| @@ -3601,6 +3602,13 @@ extern void mark_object (Lisp_Object); | |||
| 3601 | #if defined REL_ALLOC && !defined SYSTEM_MALLOC && !defined HYBRID_MALLOC | 3602 | #if defined REL_ALLOC && !defined SYSTEM_MALLOC && !defined HYBRID_MALLOC |
| 3602 | extern void refill_memory_reserve (void); | 3603 | extern void refill_memory_reserve (void); |
| 3603 | #endif | 3604 | #endif |
| 3605 | #ifdef DOUG_LEA_MALLOC | ||
| 3606 | extern void alloc_unexec_pre (void); | ||
| 3607 | extern void alloc_unexec_post (void); | ||
| 3608 | #else | ||
| 3609 | INLINE void alloc_unexec_pre (void) {} | ||
| 3610 | INLINE void alloc_unexec_post (void) {} | ||
| 3611 | #endif | ||
| 3604 | extern const char *pending_malloc_warning; | 3612 | extern const char *pending_malloc_warning; |
| 3605 | extern Lisp_Object zero_vector; | 3613 | extern Lisp_Object zero_vector; |
| 3606 | extern Lisp_Object *stack_base; | 3614 | extern Lisp_Object *stack_base; |