Skip to content

Commit ed38562

Browse files
Rollup merge of #104139 - ferrocene:pa-channel-licensing, r=pnkfelix
Clarify licensing situation of MPSC and SPSC queue Originally, these two files were licensed under the `BSD-2-Clause` license, as they were based off sample code on a blog licensing those snippets under that license: * `library/std/src/sync/mpsc/mpsc_queue.rs` * `library/std/src/sync/mpsc/spsc_queue.rs` In 2017 though, the author of that blog agreed to relicense their code under the standard `MIT OR Apache-2.0` license in #42149. This PR clarifies the situation in the files by expanding the comment at the top of the file. r? ``@pnkfelix``
2 parents a92d83a + 807a7bf commit ed38562

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

library/std/src/sync/mpsc/mpsc_queue.rs

+9-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,15 @@
88
//! method, and see the method for more information about it. Due to this
99
//! caveat, this queue might not be appropriate for all use-cases.
1010
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
1320

1421
#[cfg(all(test, not(target_os = "emscripten")))]
1522
mod tests;

library/std/src/sync/mpsc/spsc_queue.rs

+8
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,15 @@
44
//! concurrently between two threads. This data structure is safe to use and
55
//! enforces the semantics that there is one pusher and one popper.
66
7+
// The original implementation is based off:
78
// 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
816

917
#[cfg(all(test, not(target_os = "emscripten")))]
1018
mod tests;

0 commit comments

Comments
 (0)