Revert rayon stack limits until we sort out the crashtest bustage.

This commit is contained in:
Bobby Holley 2017-08-25 11:40:17 -07:00
parent 72c59ff830
commit be67bb87d4
2 changed files with 4 additions and 5 deletions

View file

@ -644,8 +644,8 @@ impl StackLimitChecker {
//
// The correctness of depends on the assumption that no stack wraps
// around the end of the address space.
debug_assert!(curr_sp - self.lower_limit
<= STYLE_THREAD_STACK_SIZE_KB * 1024);
//debug_assert!(curr_sp - self.lower_limit
// <= STYLE_THREAD_STACK_SIZE_KB * 1024);
// The actual bounds check.
curr_sp <= self.lower_limit