Changeset 20


Ignore:
Timestamp:
Nov 10, 2005, 11:50:40 PM (17 years ago)
Author:
Sam Hocevar
Message:
  • disabled GC, caching system and custom malloc.
Location:
abuse/trunk/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • abuse/trunk/src/include/lcache.hpp

    r2 r20  
    66#define can_cache_lisp() 0
    77#else
    8 #define can_cache_lisp() 1
     8#define can_cache_lisp() 0 /* XXX */
    99#endif
    1010
  • abuse/trunk/src/lisp.cpp

    r19 r20  
    172172void *lmalloc(int size, int which_space)
    173173{     
     174  return malloc(size); /* XXX */
     175
    174176#ifdef WORD_ALIGN
    175177  size=(size+3)&(~3);
  • abuse/trunk/src/lisp_gc.cpp

    r17 r20  
    241241void collect_space(int which_space) // should be tmp or permenant
    242242{
     243  return; /* XXX */
     244
    243245  int old_space=current_space;
    244246  cstart=(uint8_t *)space[which_space];
Note: See TracChangeset for help on using the changeset viewer.