Taiki Endo
Taiki Endo
If you or someone could work on this that would be great.
Hmm, considering that `llvm-cov export` seems to ignore the -Xdemagler flag, this does not seem to be an issue that can be addressed on cargo-llvm-cov side. Of course we could...
Great news! I would accept a PR to implement this.
Currently the version of parse-changelog used in this action is tied to the version of this action, and this property is important for the stability of the action, but I...
The breaking changes we want to include in the next breaking release have been completed in the master branch with the exception of https://github.com/crossbeam-rs/crossbeam/issues/946, so we can release crossbeam-epoch 0.10...
Loom is cfg-ed optional dependency, so you have to enable both `crossbeam_loom` cfg and `loom` feature. https://github.com/crossbeam-rs/crossbeam/blob/75d24e0a4ca4733c09b4bde0c137f4120cccaf04/crossbeam-utils/Cargo.toml#L34-L39 This is a bit odd, but unfortunately necessary to address the problem that...
The issue is that they do not work because they have different structures to begin with. The implementation before https://github.com/crossbeam-rs/crossbeam/pull/787 is completely broken. AFAIK, what could be implemented is a...
> as `SeqQueue` uses `AtomicCell` If you are talking about crossbeam_queue::Se*g*Queue, crossbeam_queue doesn't use `AtomicCell` at all. (In crossbeam, only `crossbeam_channel::tick` uses `AtomicCell`) The reason why crossbeam_queue does not currently...
Thanks for the report! I wonder if this is the same issue as https://github.com/crossbeam-rs/crossbeam/issues/540...
It seems that the access to the field is causing loading from memory, so this patch may improve the situation: https://github.com/crossbeam-rs/crossbeam/compare/master...taiki-e/local-mark-bit