mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Run neon tests forst
This commit is contained in:
parent
5426790eb0
commit
11734e8f1b
4 changed files with 26 additions and 29 deletions
|
@ -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
|
||||
);
|
||||
}),
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue