Skip to content

Commit a01f363

Browse files
Rollup merge of rust-lang#42149 - dvyukov:license, r=brson
libstd/sync/mpsc: relicense under rust license These files are licensed under a different license than the rest of the codebase. This causes potential issues and inconveniences. Relicense these files under the standard license. I hold original copyright on that code. Fixes rust-lang#36556
2 parents ee8dda4 + 0b85b64 commit a01f363

File tree

2 files changed

+20
-54
lines changed

2 files changed

+20
-54
lines changed

src/libstd/sync/mpsc/mpsc_queue.rs

+9-26
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,12 @@
1-
/* Copyright (c) 2010-2011 Dmitry Vyukov. All rights reserved.
2-
* Redistribution and use in source and binary forms, with or without
3-
* modification, are permitted provided that the following conditions are met:
4-
*
5-
* 1. Redistributions of source code must retain the above copyright notice,
6-
* this list of conditions and the following disclaimer.
7-
*
8-
* 2. Redistributions in binary form must reproduce the above copyright
9-
* notice, this list of conditions and the following disclaimer in the
10-
* documentation and/or other materials provided with the distribution.
11-
*
12-
* THIS SOFTWARE IS PROVIDED BY DMITRY VYUKOV "AS IS" AND ANY EXPRESS OR IMPLIED
13-
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
14-
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
15-
* SHALL DMITRY VYUKOV OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
16-
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
17-
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
18-
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
19-
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
20-
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
21-
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
22-
*
23-
* The views and conclusions contained in the software and documentation are
24-
* those of the authors and should not be interpreted as representing official
25-
* policies, either expressed or implied, of Dmitry Vyukov.
26-
*/
1+
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
2710

2811
//! A mostly lock-free multi-producer, single consumer queue.
2912
//!

src/libstd/sync/mpsc/spsc_queue.rs

+11-28
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,21 @@
1-
/* Copyright (c) 2010-2011 Dmitry Vyukov. All rights reserved.
2-
* Redistribution and use in source and binary forms, with or without
3-
* modification, are permitted provided that the following conditions are met:
4-
*
5-
* 1. Redistributions of source code must retain the above copyright notice,
6-
* this list of conditions and the following disclaimer.
7-
*
8-
* 2. Redistributions in binary form must reproduce the above copyright
9-
* notice, this list of conditions and the following disclaimer in the
10-
* documentation and/or other materials provided with the distribution.
11-
*
12-
* THIS SOFTWARE IS PROVIDED BY DMITRY VYUKOV "AS IS" AND ANY EXPRESS OR IMPLIED
13-
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
14-
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
15-
* SHALL DMITRY VYUKOV OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
16-
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
17-
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
18-
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
19-
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
20-
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
21-
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
22-
*
23-
* The views and conclusions contained in the software and documentation are
24-
* those of the authors and should not be interpreted as representing official
25-
* policies, either expressed or implied, of Dmitry Vyukov.
26-
*/
27-
28-
// http://www.1024cores.net/home/lock-free-algorithms/queues/unbounded-spsc-queue
1+
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
2910

3011
//! A single-producer single-consumer concurrent queue
3112
//!
3213
//! This module contains the implementation of an SPSC queue which can be used
3314
//! concurrently between two threads. This data structure is safe to use and
3415
//! enforces the semantics that there is one pusher and one popper.
3516
17+
// http://www.1024cores.net/home/lock-free-algorithms/queues/unbounded-spsc-queue
18+
3619
use alloc::boxed::Box;
3720
use core::ptr;
3821
use core::cell::UnsafeCell;

0 commit comments

Comments
 (0)