Dan Gohman

Results 1065 comments of Dan Gohman

@penzn Ah, I misunderstood your question then. Wasm hasn't historically prioritized the convenience of interpreter-based wasm engines, but that's different than interpreters compiled to Wasm. The idea at the time...

I am working on fixes for this issue, and I'll keep this issue updated.

Currently, tests requiring non-default Linux capabilities are just `#[ignore]`ed, unfortunately. If anyone has any ideas on better ways to do that, they'd be appreciated. I myself don't know anything about...

I have a fix for that armv7 FreeBSD bug [here](https://github.com/bytecodealliance/rustix/pull/518); I'll do a point release of rustix and update Wasmtime.

@bvisness Friendly ping; could you revert the gemfile changes here?

This looks like a bug in the test. Before the `test_udp_recvmsg_multishot_trunc` test runs, the `test_recvmsg_multishot` test runs, and the code [here](https://github.com/tokio-rs/io-uring/blob/master/io-uring-test/src/tests/net.rs#L1567) is registering three buffers (contradicting the comment saying it's...

How much testing have you done with the linux_raw backend on these targets? There are some places in the Linux syscall ABI which are sensitive to endianness, such as when...

I don't want to enable linux_raw on architectures that it hasn't been tested on, and I'm not eager to maintain new complex testing configurations. Would it make sense to enable...

I'm curious why you introduced a new rustix_use_untested_linux_raw flag, rather than reusing the existing rustix_use_experimental_asm flag.