FrankReh
FrankReh
Just ran into this too. But seeing how the ssh line is built up within the vssh shell script was enough to let me roll my own. Very handy to...
@allan-simon I don't know ruby and just took the lesson from vssh about how to call ssh directly with the arguments relevant to my situation. So I call ssh passing...
@Timmmm Are you asking about this in terms of getting `tokio` to support `wasip2` down the road where a `Pollable` could be used by the tokio guest to recognize when...
Yes, I'm eagerly watching how pollables are added to tokio for Preview 2 myself. I think a lot of the current-thread runtime can be made to work within a Wasm...
@sebcrozet Would you accept a PR for this? This was introduced in PR #42. The std implementation for SystemTime::elapsed is also like @JustinLovinger points out: https://github.com/rust-lang/rust/blob/109cccbe4f345c0f0785ce860788580c3e2a29f5/library/std/src/time.rs#L554-L556
Seems like the pieces are in place for someone to give this a try. A WIT could be created that defined a resource representing a serial port. A Rust embedder...
Only today I started to appreciate the value of the buf_ring feature added in 5.19. That was introduced in the kernel archives in April this year and perhaps I had...
The pbuf_ring mechanism seems to be the fourth form of buffer management provided by the kernel io_uring driver (as of 5.19). (Not even counting the mechanism where the caller provides...
As another reference, here is the liburing UDP example using the io_uring_buf_ring mechanism. https://github.com/axboe/liburing/blob/master/examples/io_uring-udp.c It also happens to use the new io_uring_prep_recvmsg_multishot (from kernel 6.0). Should make a reasonable target...
And here is the kernel URL for seeing all archived emails about buf_ring. https://lore.kernel.org/io-uring/?q=buf_ring