Taiki Endo

Results 934 comments of Taiki Endo

@jeehoonkang > I think it has a quite stable API. Agreed. Also, I think crossbeam-queue is probably just as stable. Only one breaking change (#548) has been made since it...

@jeehoonkang > crossbeam-queue (and other crates) Is crossbeam-utils included in "other crates"? ([you said it has a quite stable API](https://github.com/crossbeam-rs/crossbeam/issues/503#issuecomment-753977910)) In either case, I'm fine with postponing the stabilization of...

CI failure has been fixed in #758.

cc @jeehoonkang (If I remember correctly, you were working on proving the correctness of deque. https://github.com/crossbeam-rs/rfcs/pull/26)

If someone can implement an equivalent to the standard library's scoped thread API without relying on unstable features, I would like to change the crossbeam's scoped thread API in the...

`Local::bag` field is 2056 bytes and already exceeds 2048 bytes, so there seems to be no other way to do this than reduce the size of `Bag`. https://github.com/crossbeam-rs/crossbeam/blob/bfb7705989a0961a16386ae2109bc2ef7f0bbe5e/crossbeam-epoch/src/internal.rs#L362-L363 And to...

Reopening -- #552 has been reverted in #879. (See #869 for the context.)

Note that some 32-bit architectures do not support `AtomicU64`: https://github.com/tokio-rs/tokio/pull/1421#issuecomment-527911780

I think it's good to use it when `AtomicU64` is available, but we have to decide what to do if `AtomicU64` is not available. We can probably use `AtomicCell` for...