cargo fmt

pull/284/head
mwojcik 2024-02-01 14:43:26 +08:00
parent 52e64fb2f9
commit bfb582f99b
2 changed files with 18 additions and 11 deletions

View File

@ -451,12 +451,9 @@ async fn handle_run_kernel(
.await;
}
#[cfg(has_drtio)]
kernel::Message::SubkernelMsgSend {
id,
destination,
data,
} => {
let res = subkernel::message_send(aux_mutex, routing_table, timer, id, destination.unwrap(), data).await;
kernel::Message::SubkernelMsgSend { id, destination, data } => {
let res =
subkernel::message_send(aux_mutex, routing_table, timer, id, destination.unwrap(), data).await;
match res {
Ok(_) => (),
Err(e) => {

View File

@ -26,7 +26,7 @@ enum KernelState {
MsgAwait {
max_time: Option<Milliseconds>,
id: u32,
tags: Vec<u8>
tags: Vec<u8>,
},
MsgSending,
SubkernelAwaitLoad,
@ -180,7 +180,13 @@ impl MessageManager {
}
}
pub fn handle_incoming(&mut self, status: PayloadStatus, id: u32, length: usize, data: &[u8; MASTER_PAYLOAD_MAX_SIZE]) {
pub fn handle_incoming(
&mut self,
status: PayloadStatus,
id: u32,
length: usize,
data: &[u8; MASTER_PAYLOAD_MAX_SIZE],
) {
// called when receiving a message from master
if status.is_first() {
self.in_buffer = None;
@ -726,7 +732,11 @@ impl<'a> Manager<'_> {
} else {
None
};
self.session.kernel_state = KernelState::MsgAwait { max_time: max_time, id:id, tags: tags };
self.session.kernel_state = KernelState::MsgAwait {
max_time: max_time,
id: id,
tags: tags,
};
}
kernel::Message::SubkernelLoadRunRequest {
id,