Run neon tests forst

This commit is contained in:
Nikolay Kim 2025-03-17 04:57:28 +01:00
parent 5426790eb0
commit 11734e8f1b
4 changed files with 26 additions and 29 deletions

View file

@ -132,11 +132,10 @@ impl<T> Handler for StreamOpsHandler<T> {
.inspect(|size| {
unsafe { buf.advance_mut(*size) };
log::debug!(
"{}: {:?}, SIZE: {:?}, BUF: {:?}",
"{}: {:?}, SIZE: {:?}",
item.context.tag(),
item.fd,
size,
buf,
size
);
}),
)
@ -150,11 +149,10 @@ impl<T> Handler for StreamOpsHandler<T> {
let item = &mut streams[id];
let result = item.context.with_write_buf(|buf| {
log::debug!(
"{}: writing {:?} SIZE: {:?}, BUF: {:?}",
"{}: writing {:?} SIZE: {:?}",
item.context.tag(),
item.fd,
buf.len(),
buf,
buf.len()
);
let slice = &buf[..];
syscall!(
@ -286,11 +284,10 @@ impl<T> StreamCtl<T> {
.inspect(|size| {
unsafe { buf.advance_mut(*size) };
log::debug!(
"{}: {:?}, SIZE: {:?}, BUF: {:?}",
"{}: {:?}, SIZE: {:?}",
item.context.tag(),
item.fd,
size,
buf,
size
);
}),
)