Changeset 8370
- Timestamp:
- Jan 29, 2008, 5:57:50 PM (17 years ago)
- File:
-
- 1 edited
-
trunk/source/lisp-kernel/gc-common.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/lisp-kernel/gc-common.c
r8369 r8370 704 704 } 705 705 706 weak_mark_fun dws_mark_weak_htabv = traditional_dws_mark_htabv;707 weak_mark_fun mark_weak_htabv = traditional_mark_weak_htabv;708 weak_process_fun markhtabvs = traditional_markhtabvs;709 710 void711 install_weak_mark_functions(int set) {712 switch(set) {713 case 0:714 default:715 dws_mark_weak_htabv = traditional_dws_mark_htabv;716 mark_weak_htabv = traditional_mark_weak_htabv;717 markhtabvs = traditional_markhtabvs;718 break;719 case 1:720 dws_mark_weak_htabv = ncircle_dws_mark_htabv;721 mark_weak_htabv = ncircle_mark_weak_htabv;722 markhtabvs = ncircle_markhtabvs;723 break;724 }725 }726 727 706 void 728 707 gc_init() … … 765 744 766 745 #endif 746 747 748 weak_mark_fun dws_mark_weak_htabv = traditional_dws_mark_htabv; 749 weak_mark_fun mark_weak_htabv = traditional_mark_weak_htabv; 750 weak_process_fun markhtabvs = traditional_markhtabvs; 751 752 void 753 install_weak_mark_functions(int set) { 754 switch(set) { 755 case 0: 756 default: 757 dws_mark_weak_htabv = traditional_dws_mark_htabv; 758 mark_weak_htabv = traditional_mark_weak_htabv; 759 markhtabvs = traditional_markhtabvs; 760 break; 761 case 1: 762 dws_mark_weak_htabv = ncircle_dws_mark_htabv; 763 mark_weak_htabv = ncircle_mark_weak_htabv; 764 markhtabvs = ncircle_markhtabvs; 765 break; 766 } 767 } 767 768 768 769 LispObj
Note:
See TracChangeset
for help on using the changeset viewer.
