File tree 2 files changed +17
-2
lines changed
library/std/src/sync/mpsc
2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 8
8
//! method, and see the method for more information about it. Due to this
9
9
//! caveat, this queue might not be appropriate for all use-cases.
10
10
11
- // https://www.1024cores.net/home/lock-free-algorithms
12
- // /queues/non-intrusive-mpsc-node-based-queue
11
+ // The original implementation is based off:
12
+ // https://www.1024cores.net/home/lock-free-algorithms/queues/non-intrusive-mpsc-node-based-queue
13
+ //
14
+ // Note that back when the code was imported, it was licensed under the BSD-2-Clause license:
15
+ // http://web.archive.org/web/20110411011612/https://www.1024cores.net/home/lock-free-algorithms/queues/unbounded-spsc-queue
16
+ //
17
+ // The original author of the code agreed to relicense it under `MIT OR Apache-2.0` in 2017, so as
18
+ // of today the license of this file is the same as the rest of the codebase:
19
+ // https://github.com/rust-lang/rust/pull/42149
13
20
14
21
#[ cfg( all( test, not( target_os = "emscripten" ) ) ) ]
15
22
mod tests;
Original file line number Diff line number Diff line change 4
4
//! concurrently between two threads. This data structure is safe to use and
5
5
//! enforces the semantics that there is one pusher and one popper.
6
6
7
+ // The original implementation is based off:
7
8
// https://www.1024cores.net/home/lock-free-algorithms/queues/unbounded-spsc-queue
9
+ //
10
+ // Note that back when the code was imported, it was licensed under the BSD-2-Clause license:
11
+ // http://web.archive.org/web/20110411011612/https://www.1024cores.net/home/lock-free-algorithms/queues/unbounded-spsc-queue
12
+ //
13
+ // The original author of the code agreed to relicense it under `MIT OR Apache-2.0` in 2017, so as
14
+ // of today the license of this file is the same as the rest of the codebase:
15
+ // https://github.com/rust-lang/rust/pull/42149
8
16
9
17
#[ cfg( all( test, not( target_os = "emscripten" ) ) ) ]
10
18
mod tests;
You can’t perform that action at this time.
0 commit comments