Changeset 20
- Timestamp:
- Nov 10, 2005, 11:50:40 PM (17 years ago)
- Location:
- abuse/trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
abuse/trunk/src/include/lcache.hpp
r2 r20 6 6 #define can_cache_lisp() 0 7 7 #else 8 #define can_cache_lisp() 18 #define can_cache_lisp() 0 /* XXX */ 9 9 #endif 10 10 -
abuse/trunk/src/lisp.cpp
r19 r20 172 172 void *lmalloc(int size, int which_space) 173 173 { 174 return malloc(size); /* XXX */ 175 174 176 #ifdef WORD_ALIGN 175 177 size=(size+3)&(~3); -
abuse/trunk/src/lisp_gc.cpp
r17 r20 241 241 void collect_space(int which_space) // should be tmp or permenant 242 242 { 243 return; /* XXX */ 244 243 245 int old_space=current_space; 244 246 cstart=(uint8_t *)space[which_space];
Note: See TracChangeset
for help on using the changeset viewer.