| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-03-19 | Specify a concrete stack size in channel tests | Jeff Martin | -5/+15 | |
| The channel-stack-overflow-issue-102246 regression test fails on platforms with a small default stack size (e.g. Fuchsia, with a default of 256KiB). Update the test to specify an exact stack size for both the sender and receiver operations, to ensure it is platform agnostic. Set the stack size to less than the total allocation size of the mpsc channel, to continue to prove that the allocation is on the heap. | ||||
| 2024-11-07 | This test needs threads | Josh Stone | -0/+1 | |
| 2024-11-07 | Initialize channel `Block`s directly on the heap | Josh Stone | -0/+28 | |
| The channel's `Block::new` was causing a stack overflow because it held 32 item slots, instantiated on the stack before moving to `Box::new`. The 32x multiplier made modestly-large item sizes untenable. That block is now initialized directly on the heap. Fixes #102246 | ||||
