contexts.hpp: Increase callstack reserve space to 16k for Mac64. Fixes issue #1419.
							parent
							
								
									9d021bb081
								
							
						
					
					
						commit
						dcc1e7773f
					
				| 
						 | 
				
			
			@ -15,8 +15,8 @@ enum context_object {
 | 
			
		|||
/* When the callstack fills up (e.g by to deep recursion), a callstack
 | 
			
		||||
   overflow error is triggered. So before continuing executing on it
 | 
			
		||||
   in general_error(), we chop off this many bytes to have some space
 | 
			
		||||
   to work with. */
 | 
			
		||||
static const cell stack_reserved = 4096;
 | 
			
		||||
   to work with. Mac OSX 64 bit needs more than 8192. See issue #1419. */
 | 
			
		||||
static const cell stack_reserved = 16384;
 | 
			
		||||
 | 
			
		||||
struct context {
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue