Jim Blandy

Results 182 comments of Jim Blandy

Right - I'm saying, I would be delighted if this were stabilized. :)

It seems like `format!` can be used in cross-thread spawns now. This works fine: ``` use async_std::task; use async_std::io; use async_std::io::prelude::*; async fn write_hello() { let msg = format!("Hello, World!\n");...

If I'm reading the code correctly, it looks like locking Tokio's `Mutex` requires no heap allocations even when it's contended. The idea is that the future returned by `Mutex::lock` can...

(I tried to fix the cfg-ed out code, too, but if I got it all right I'll be surprised...)

Yeah, I missed a case, and that's causing the FreeBSD failure. The `test-aio-drop` failures don't seem to have anything to do with this push.

@asomers: It doesn't seem like @susurrus is available; is there anyone else who can review?

The CI failure is due to `libc`'s deprecation of the `af_alg_iv` struct: ``` error: use of deprecated struct `libc::af_alg_iv`: this struct has unsafe trait implementations that will be removed in...

I think this has been fixed by the recent bindgroup deduplication work. If this is still a problem, feel free to re-open.

@nical was working on this; may be fixed now.

[edited: add `draw_on_texture` method] I'm not sure why we need to remove the associated type from the hal traits. There's no problem making trait objects for such traits, as long...