Mercurial > hg > xemacs-beta
comparison src/gc.c @ 5054:24372c7e0e8f
fix build problem with pdump
-------------------- ChangeLog entries follow: --------------------
src/ChangeLog addition:
2010-02-21 Ben Wing <ben@xemacs.org>
* gc.c (kkcc_marking): Fix compile error.
* mc-alloc.c:
#if 0 out some unused functions.
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Sun, 21 Feb 2010 20:58:45 -0600 |
parents | d4f666cda5e6 |
children | a9c41067dd88 |
comparison
equal
deleted
inserted
replaced
5053:0e803dc6f096 | 5054:24372c7e0e8f |
---|---|
1020 /* This function implements the KKCC mark algorithm. | 1020 /* This function implements the KKCC mark algorithm. |
1021 Instead of calling mark_object, all the alive Lisp_Objects are pushed | 1021 Instead of calling mark_object, all the alive Lisp_Objects are pushed |
1022 on the kkcc_gc_stack. This function processes all elements on the stack | 1022 on the kkcc_gc_stack. This function processes all elements on the stack |
1023 according to their descriptions. */ | 1023 according to their descriptions. */ |
1024 static void | 1024 static void |
1025 kkcc_marking (USED_IF_NEW_GC (cnt)) | 1025 kkcc_marking (int USED_IF_NEW_GC (cnt)) |
1026 { | 1026 { |
1027 kkcc_gc_stack_entry *stack_entry = 0; | 1027 kkcc_gc_stack_entry *stack_entry = 0; |
1028 void *data = 0; | 1028 void *data = 0; |
1029 const struct memory_description *desc = 0; | 1029 const struct memory_description *desc = 0; |
1030 int pos; | 1030 int pos; |