tlambertz

Results 7 comments of tlambertz

I have encountered the same issue for my tracing library as well, it's a change in how clang/llvm split functionality between themselves. There is an open issue here: https://github.com/rust-lang/rust/issues/92109 I...

> The trick here is the allowed log units is not a part of consensus, for example RPC nodes may wish to configure this value higher than a staked validator....

I just looked it up in the [Vec documentation](https://doc.rust-lang.org/std/vec/struct.Vec.html#guarantees) and found this is actually guaranteed: > Most fundamentally, Vec is and always will be a (pointer, capacity, length) triplet. No...

Ah you are right, I need (guest-)physical contiguous, so I have to fix this. In the current implementation virtio queues can only send blocking requests, which use the first available...

> fire and forget sounds good. But when do you forget? We could do something like: - someone sends a transfer, drops() it before completion - we overwrite drop() to...

Compiling on latest nightly is a bit annoying. I haven't tested rftrace recently, but have been using uftrace some. Upstream LLVM changed how the mcount symbol is added, and you...

> Do you want to use Rust`s libstd in combination newlib? Yes, this is essentially what I want. libstd in a library, linked to a newlib C application.