diff options
| author | Brian Anderson <banderson@mozilla.com> | 2012-02-23 19:42:59 -0800 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-02-23 19:42:59 -0800 |
| commit | cb7022cfc20b89947ff3fa96d4617f9fe64d2f3e (patch) | |
| tree | 5f0e136ad175c75ecd66e569b2f38a6d7d078456 /src/rt/rust_task.cpp | |
| parent | b44be95e4543d63aa9174069a881abf51c9dd923 (diff) | |
| download | rust-cb7022cfc20b89947ff3fa96d4617f9fe64d2f3e.tar.gz rust-cb7022cfc20b89947ff3fa96d4617f9fe64d2f3e.zip | |
rt: Cut the red zone to 10K on mac
Diffstat (limited to 'src/rt/rust_task.cpp')
| -rw-r--r-- | src/rt/rust_task.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rt/rust_task.cpp b/src/rt/rust_task.cpp index a2887d986f5..348b4fce107 100644 --- a/src/rt/rust_task.cpp +++ b/src/rt/rust_task.cpp @@ -18,8 +18,8 @@ // FIXME: We want this to be 128 but need to slim the red zone calls down #define RZ_LINUX_32 (1024*2) #define RZ_LINUX_64 (1024*2) -#define RZ_MAC_32 (1024*20) -#define RZ_MAC_64 (1024*20) +#define RZ_MAC_32 (1024*10) +#define RZ_MAC_64 (1024*10) #define RZ_WIN_32 (1024*20) #define RZ_BSD_32 (1024*20) #define RZ_BSD_64 (1024*20) |
