File tree Expand file tree Collapse file tree 2 files changed +10
-9
lines changed Expand file tree Collapse file tree 2 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -94,15 +94,6 @@ static size_t const BUF_BYTES = 2048;
94
94
// The error status to use when the process fails
95
95
#define PROC_FAIL_CODE 101 ;
96
96
97
- // FIXME: We want this to be 128 but need to slim the red zone calls down
98
- #ifdef __i386__
99
- #define RED_ZONE_SIZE 2048
100
- #endif
101
-
102
- #ifdef __x86_64__
103
- #define RED_ZONE_SIZE 2048
104
- #endif
105
-
106
97
// Every reference counted object should use this macro and initialize
107
98
// ref_count.
108
99
Original file line number Diff line number Diff line change 14
14
15
15
#include " globals.h"
16
16
17
+ // The amount of extra space at the end of each stack segment, available
18
+ // to the rt, compiler and dynamic linker for running small functions
19
+ // FIXME: We want this to be 128 but need to slim the red zone calls down
20
+ #ifdef __i386__
21
+ #define RED_ZONE_SIZE 2048
22
+ #endif
23
+
24
+ #ifdef __x86_64__
25
+ #define RED_ZONE_SIZE 2048
26
+ #endif
17
27
18
28
// Stack size
19
29
size_t g_custom_min_stack_size = 0 ;
You can’t perform that action at this time.
0 commit comments