-
Notifications
You must be signed in to change notification settings - Fork 0
1.91.1 xous arm changes #1
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,24 @@ | ||||||
| use core::{sync::atomic::{Atomic}, time::Duration}; | ||||||
|
||||||
| use core::{sync::atomic::{Atomic}, time::Duration}; | |
| use core::{sync::atomic::Atomic, time::Duration}; |
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.
what is this? why do we have two of the same thing? is this something required to be exported from the futex file?
Copilot
AI
Dec 10, 2025
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.
Spelling error in assertion message: "Timeouts" should be "Timeout" (singular form is more appropriate here).
| assert!(timeout.is_none(), "Timeouts on xous futexes is not supported"); | |
| assert!(timeout.is_none(), "Timeout on xous futexes is not supported"); |
Copilot
AI
Dec 10, 2025
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.
Missing space after comma in the function call. Should be xous::futex_wake(futex, 1) for consistency with coding style.
| xous::futex_wake(futex,1).ok(); | |
| xous::futex_wake(futex, 1).ok(); |
Uh oh!
There was an error while loading. Please reload this page.