diff options
Diffstat (limited to 'src/lisp.h')
| -rw-r--r-- | src/lisp.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/lisp.h b/src/lisp.h index 63baab5d636..043f2f738e4 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -3793,9 +3793,13 @@ extern void flush_stack_call_func (void (*func) (void *arg), void *arg); | |||
| 3793 | extern void garbage_collect (void); | 3793 | extern void garbage_collect (void); |
| 3794 | extern const char *pending_malloc_warning; | 3794 | extern const char *pending_malloc_warning; |
| 3795 | extern Lisp_Object zero_vector; | 3795 | extern Lisp_Object zero_vector; |
| 3796 | typedef intptr_t object_ct; /* Signed type of object counts reported by GC. */ | 3796 | #define CONSING_CT_MAX max (INTPTR_MAX, EMACS_INT_MAX) |
| 3797 | #define OBJECT_CT_MAX INTPTR_MAX | 3797 | #if CONSING_CT_MAX == INTPTR_MAX |
| 3798 | extern object_ct consing_until_gc; | 3798 | typedef intptr_t consing_ct; |
| 3799 | #else | ||
| 3800 | typedef EMACS_INT consing_ct; | ||
| 3801 | #endif | ||
| 3802 | extern consing_ct consing_until_gc; | ||
| 3799 | #ifdef HAVE_PDUMPER | 3803 | #ifdef HAVE_PDUMPER |
| 3800 | extern int number_finalizers_run; | 3804 | extern int number_finalizers_run; |
| 3801 | #endif | 3805 | #endif |