Brian Silverman
Brian Silverman
> Note that we want to maintain backwards compatibility with existing users' code so `FlatBufferBuilder` should not be changed to require any parameters. This can be achieved with a simple...
I think Rust is uniquely well suited to this. I don't have a use case for it, but I think it's worth laying out a bit more about how this...
For reference, this looks like an upstream kernel regression. https://discuss.hashicorp.com/t/exec-driver-memory-kmem-limit-in-bytes-operation-not-supported/35242 mentions the same problem. I'm seeing it with Debian 5.16.0-0.bpo.4-amd64 and Docker 20.10.5+dfsg1.
This is a more complete version of what I wrote for demonstrating #821. I think having it as an official benchmark to measure performance of is valuable.
I use crossbeam with SCHED_FIFO. This means the higher-priority thread will _never_ yield to the lower-priority one, so hitting this kind of priority inversion is a full-on deadlock. I don't...
I think the same thing happens when bindgen decides a type is opaque by itself (as opposed to forcing it with `--opaque-type`) ( due to #362 for example): ```c++ template...
Looks like `u8` is coming from `ToOpaque::get_layout`'s fallback to `Layout::for_size(ctx, 1)`. That seems unlikely to result in valid bindings. I'm not sure how to gracefully refuse to generate bindings for...
ARM ABIs are really complicated... I'm not sure how to fit all of this into constraints. I'm sure representing all of this complexity is a bad idea, but I don't...
> I would rather go small first, with very precise definitions of what each constant means. I agree with these goals. I would like to add "no names that are...
Another tricky scenario to consider, courtesy of a @coffinmatician: 1. C++ toolchain for armv7 soft-float ABI which doesn't emit floating point instructions 2. C++ toolchain for armv7 soft-float ABI which...