Ian Douglas Scott
Ian Douglas Scott
> Calling libc's malloc directly and implementing some sort of custom vec-like structure. It's rather annoying to have to do it this way, but it shouldn't be to hard to...
https://github.com/uutils/coreutils/pull/5502 fixes the build on Redox. Not too many things needed to be changed. A very easy way to do CI tests for different platforms is to just run a...
`cargo check --target x86_64-unknown-redox --features feat_os_unix_redox` seems to work without a redox toolchain/sysroot if `expr` is commented out from `feat_common_core`, so `onig` seems to be the only issue with that...
I'm not sure I understand why kqueue is a safety concern here? If a file descriptor added to a kqueue is closed, it is automatically removed from the kqueue. In...
It's currently a somewhat strange inconsistency in the Configurator between builtin boards and launch that color can be set but isn't persisted, it would be good to support that at...
In addition to a way to set this, it would be good to have an API to test if it's supported. On Wayland RGBA and RGBX should always be, but...
I am not familiar enough with Vulkan to know what the best thing to do here is, but the Nvidia driver does seem to be violating this rough guarantee of...
Ah, I guess the line above that says the "return in finite time" guarantee is about device loss, so there's no mentioned guarantee it won't block indefinitely in other circumstances.
I don't *think* it should be an issue with anything, but `?Sized` may need to be added in more places, and some care may be needed not to break this...
I don't think Rust could allow a coercion from `Context` to `Context` since type type signature doesn't express exactly how the `T` is used. I think if it's possible we'd...