Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmarkov committed Oct 5, 2023
1 parent 796fcee commit 44946d7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/interrupt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,10 @@ pub mod asynch {

if !task.is_null() {
unsafe {
crate::task::notify_and_yield(task as _, 1);
crate::task::notify_and_yield(
task as _,
NonZeroU32::new(1).unwrap(),
);
}
}
})
Expand Down

0 comments on commit 44946d7

Please sign in to comment.