mirror of
				https://github.com/esp8266/Arduino.git
				synced 2025-11-03 14:33:37 +03:00 
			
		
		
		
	Fix alignment of continuations stack
This commit is contained in:
		@@ -25,7 +25,7 @@
 | 
			
		||||
void cont_init(cont_t* cont) {
 | 
			
		||||
    cont->stack_guard1 = CONT_STACKGUARD;
 | 
			
		||||
    cont->stack_guard2 = CONT_STACKGUARD;
 | 
			
		||||
    cont->stack_end = cont->stack + (sizeof(cont->stack) / 4 - 1);
 | 
			
		||||
    cont->stack_end = cont->stack + (sizeof(cont->stack) / 4);
 | 
			
		||||
    cont->struct_start = (unsigned*) cont;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user