-
Notifications
You must be signed in to change notification settings - Fork 132
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
replace software_interrupt! macro with generic function #259
replace software_interrupt! macro with generic function #259
Conversation
I'm not sure if this function has to be |
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.
I like this change (I was about to propose something similar). Can you open this pull request against the next
branch rather than the master
branch? I think having all the breaking changes in a dev branch will help us determine when we next want to cut a breaking release of this crate.
EDIT: I just realized I can do this myself.
As we're merging against the next
branch, no need to update Changelog.md
right now, that can wait until we merge next
into master
.
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.
Looks good to me too, thanks!
Followup to #259. Code previously merged as part of #227. Signed-off-by: Joe Richey <[email protected]>
This is a *breaking change*, also add note about safety.
Followup to rust-osdev#259. Code previously merged as part of rust-osdev#227. Signed-off-by: Joe Richey <[email protected]>
Followup to rust-osdev#259. Code previously merged as part of rust-osdev#227. Signed-off-by: Joe Richey <[email protected]>
This pr replaces the
software_interrupt!
macro with a generic function.This is a breaking change.