vm: change code heap alignment to 16 bytes instead of 32 to reduce image size
							parent
							
								
									b6a0324be6
								
							
						
					
					
						commit
						21d29b3961
					
				| 
						 | 
				
			
			@ -1,8 +1,8 @@
 | 
			
		|||
namespace factor
 | 
			
		||||
{
 | 
			
		||||
 | 
			
		||||
static const cell free_list_count = 16;
 | 
			
		||||
static const cell block_size_increment = 32;
 | 
			
		||||
static const cell free_list_count = 32;
 | 
			
		||||
static const cell block_size_increment = 16;
 | 
			
		||||
 | 
			
		||||
struct heap_free_list {
 | 
			
		||||
	free_heap_block *small_blocks[free_list_count];
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue