-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor: split/reorganize files #72
Conversation
src/run/allocator.rs
Outdated
|
||
impl Heap { | ||
/// Allocate an area for the net's heap with a given size. | ||
pub fn new(size: usize) -> Box<Heap> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removing Net::init_heap
is a backwards-incompatible change; we are going to have to coordinate with the lang team, because I'm pretty sure they use it somewhere.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, there are a few breaking changes to the API here.
Now that the circular dependency is removed, I don't think it needs to be coördinated very much; they can simply update hvm-core
once they're ready.
Breaks up the monolithic files for easier navigation.