update SEEN_ASYNC_ERRORS in destination_survey #195
No reviewers
Labels
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: M-Labs/artiq-zynq#195
Loading…
Reference in New Issue
No description provided.
Delete Branch "kk105/artiq-zynq:Update-SEEN_ASYNC_ERRORS"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Destination_survey should update SEEN_ASYNC_ERRORS #1895
Update the SEEN_ASYNC_ERRORS and add unsafe to it. Also use the const definitions for the error numbers.
@ -8,6 +8,10 @@ use libcortex_a9::mutex::Mutex;
#[cfg(has_drtio)]
pub mod drtio {
use super::*;
use crate::SEEN_ASYNC_ERRORS;
Could be a single line
use crate::{SEEN_ASYNC_ERRORS, ASYNC_ERROR_BUSY, ...}