-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix length of Map64::descriptor_map (#956)
Its length should be MAX_SPACES instead of MAX_CHUNKS. The size was `MAX_SPACES` in the JikesRVM MMTk. It may have been a typo when porting JikesRVM MMTk to Rust. The new `Map64::descriptor_map` does not deserve the unsafe `new_zeroed_vec` function which was introduced to solve the slow start-up problem. We keep `new_zeroed_vec` just in case we may still need it in the future.
- Loading branch information
Showing
2 changed files
with
6 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters