Skip to content

Commit b1c9ce9

Browse files
committed
sync: Move underneath libstd
This commit is the final step in the libstd facade, #13851. The purpose of this commit is to move libsync underneath the standard library, behind the facade. This will allow core primitives like channels, queues, and atomics to all live in the same location. There were a few notable changes and a few breaking changes as part of this movement: * The `Vec` and `String` types are reexported at the top level of libcollections * The `unreachable!()` macro was copied to libcore * The `std::rt::thread` module was moved to librustrt, but it is still reexported at the same location. * The `std::comm` module was moved to libsync * The `sync::comm` module was moved under `sync::comm`, and renamed to `duplex`. It is now a private module with types/functions being reexported under `sync::comm`. This is a breaking change for any existing users of duplex streams. * All concurrent queues/deques were moved directly under libsync. They are also all marked with #![experimental] for now if they are public. * The `task_pool` and `future` modules no longer live in libsync, but rather live under `std::sync`. They will forever live at this location, but they may move to libsync if the `std::task` module moves as well. [breaking-change]
1 parent c690191 commit b1c9ce9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+382
-361
lines changed

mk/crates.mk

+6-6
Original file line numberDiff line numberDiff line change
@@ -61,16 +61,16 @@ DEPS_rlibc :=
6161
DEPS_alloc := core libc native:jemalloc
6262
DEPS_debug := std
6363
DEPS_rustrt := alloc core libc collections native:rustrt_native
64-
DEPS_std := core libc rand alloc collections rustrt \
64+
DEPS_std := core libc rand alloc collections rustrt sync \
6565
native:rust_builtin native:backtrace
6666
DEPS_graphviz := std
6767
DEPS_green := std native:context_switch
6868
DEPS_rustuv := std native:uv native:uv_support
6969
DEPS_native := std
7070
DEPS_syntax := std term serialize log fmt_macros debug
71-
DEPS_rustc := syntax native:rustllvm flate arena serialize sync getopts \
71+
DEPS_rustc := syntax native:rustllvm flate arena serialize getopts \
7272
time log graphviz debug
73-
DEPS_rustdoc := rustc native:hoedown serialize sync getopts \
73+
DEPS_rustdoc := rustc native:hoedown serialize getopts \
7474
test time debug
7575
DEPS_flate := std native:miniz
7676
DEPS_arena := std
@@ -80,17 +80,17 @@ DEPS_serialize := std log
8080
DEPS_term := std log
8181
DEPS_semver := std
8282
DEPS_uuid := std serialize
83-
DEPS_sync := std alloc
83+
DEPS_sync := core alloc rustrt collections
8484
DEPS_getopts := std
8585
DEPS_collections := core alloc
8686
DEPS_fourcc := rustc syntax std
8787
DEPS_hexfloat := rustc syntax std
8888
DEPS_num := std
8989
DEPS_test := std getopts serialize term time regex native:rust_test_helpers
90-
DEPS_time := std serialize sync
90+
DEPS_time := std serialize
9191
DEPS_rand := core
9292
DEPS_url := std
93-
DEPS_log := std sync
93+
DEPS_log := std
9494
DEPS_regex := std
9595
DEPS_regex_macros = rustc syntax std regex
9696
DEPS_fmt_macros = std

src/doc/guide-tasks.md

+13-17
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ later.
269269
The basic example below illustrates this.
270270

271271
~~~
272-
extern crate sync;
272+
use std::sync::Future;
273273
274274
# fn main() {
275275
# fn make_a_sandwich() {};
@@ -278,7 +278,7 @@ fn fib(n: u64) -> u64 {
278278
12586269025
279279
}
280280
281-
let mut delayed_fib = sync::Future::spawn(proc() fib(50));
281+
let mut delayed_fib = Future::spawn(proc() fib(50));
282282
make_a_sandwich();
283283
println!("fib(50) = {}", delayed_fib.get())
284284
# }
@@ -294,7 +294,7 @@ Here is another example showing how futures allow you to background computations
294294
be distributed on the available cores.
295295

296296
~~~
297-
# extern crate sync;
297+
# use std::sync::Future;
298298
fn partial_sum(start: uint) -> f64 {
299299
let mut local_sum = 0f64;
300300
for num in range(start*100000, (start+1)*100000) {
@@ -304,7 +304,7 @@ fn partial_sum(start: uint) -> f64 {
304304
}
305305
306306
fn main() {
307-
let mut futures = Vec::from_fn(1000, |ind| sync::Future::spawn( proc() { partial_sum(ind) }));
307+
let mut futures = Vec::from_fn(1000, |ind| Future::spawn( proc() { partial_sum(ind) }));
308308
309309
let mut final_res = 0f64;
310310
for ft in futures.mut_iter() {
@@ -329,10 +329,8 @@ Here is a small example showing how to use Arcs. We wish to run concurrently sev
329329
a single large vector of floats. Each task needs the full vector to perform its duty.
330330

331331
~~~
332-
extern crate sync;
333-
334-
use sync::Arc;
335332
use std::rand;
333+
use std::sync::Arc;
336334
337335
fn pnorm(nums: &[f64], p: uint) -> f64 {
338336
nums.iter().fold(0.0, |a, b| a + b.powf(p as f64)).powf(1.0 / (p as f64))
@@ -357,9 +355,8 @@ at the power given as argument and takes the inverse power of this value). The A
357355
created by the line
358356

359357
~~~
360-
# extern crate sync;
361358
# use std::rand;
362-
# use sync::Arc;
359+
# use std::sync::Arc;
363360
# fn main() {
364361
# let numbers = Vec::from_fn(1000000, |_| rand::random::<f64>());
365362
let numbers_arc=Arc::new(numbers);
@@ -371,9 +368,8 @@ it's contents. Within the task's procedure, the captured Arc reference can be us
371368
reference to the underlying vector as if it were local.
372369

373370
~~~
374-
# extern crate sync;
375371
# use std::rand;
376-
# use sync::Arc;
372+
# use std::sync::Arc;
377373
# fn pnorm(nums: &[f64], p: uint) -> f64 { 4.0 }
378374
# fn main() {
379375
# let numbers=Vec::from_fn(1000000, |_| rand::random::<f64>());
@@ -461,9 +457,9 @@ the string in response. The child terminates when it receives `0`.
461457
Here is the function that implements the child task:
462458

463459
~~~
464-
extern crate sync;
460+
use std::comm::DuplexStream;
465461
# fn main() {
466-
fn stringifier(channel: &sync::DuplexStream<String, uint>) {
462+
fn stringifier(channel: &DuplexStream<String, uint>) {
467463
let mut value: uint;
468464
loop {
469465
value = channel.recv();
@@ -485,10 +481,10 @@ response itself is simply the stringified version of the received value,
485481
Here is the code for the parent task:
486482

487483
~~~
488-
extern crate sync;
484+
use std::comm::duplex;
489485
# use std::task::spawn;
490-
# use sync::DuplexStream;
491-
# fn stringifier(channel: &sync::DuplexStream<String, uint>) {
486+
# use std::comm::DuplexStream;
487+
# fn stringifier(channel: &DuplexStream<String, uint>) {
492488
# let mut value: uint;
493489
# loop {
494490
# value = channel.recv();
@@ -498,7 +494,7 @@ extern crate sync;
498494
# }
499495
# fn main() {
500496
501-
let (from_child, to_child) = sync::duplex();
497+
let (from_child, to_child) = duplex();
502498
503499
spawn(proc() {
504500
stringifier(&to_child);

src/doc/intro.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -297,8 +297,7 @@ an atomically reference counted box ("A.R.C." == "atomically reference counted")
297297
Here's some code:
298298

299299
```
300-
extern crate sync;
301-
use sync::Arc;
300+
use std::sync::Arc;
302301
303302
fn main() {
304303
let numbers = vec![1,2,3];
@@ -344,8 +343,7 @@ Let's take the same example yet again,
344343
and modify it to mutate the shared state:
345344

346345
```
347-
extern crate sync;
348-
use sync::{Arc, Mutex};
346+
use std::sync::{Arc, Mutex};
349347
350348
fn main() {
351349
let numbers = vec![1,2,3];

src/etc/licenseck.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@
3838
"rt/isaac/randport.cpp", # public domain
3939
"rt/isaac/rand.h", # public domain
4040
"rt/isaac/standard.h", # public domain
41-
"libstd/sync/mpsc_queue.rs", # BSD
42-
"libstd/sync/spsc_queue.rs", # BSD
43-
"libstd/sync/mpmc_bounded_queue.rs", # BSD
41+
"libsync/mpsc_queue.rs", # BSD
42+
"libsync/spsc_queue.rs", # BSD
43+
"libsync/mpmc_bounded_queue.rs", # BSD
4444
"libsync/mpsc_intrusive.rs", # BSD
4545
"test/bench/shootout-fannkuch-redux.rs", # BSD
4646
"test/bench/shootout-meteor.rs", # BSD

src/liballoc/arc.rs

+2-4
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,7 @@ use heap::deallocate;
3333
/// task.
3434
///
3535
/// ```rust
36-
/// extern crate sync;
37-
///
38-
/// use sync::Arc;
36+
/// use std::sync::Arc;
3937
///
4038
/// fn main() {
4139
/// let numbers = Vec::from_fn(100, |i| i as f32);
@@ -276,7 +274,7 @@ mod tests {
276274
use std::task;
277275
use std::vec::Vec;
278276
use super::{Arc, Weak};
279-
use sync::Mutex;
277+
use std::sync::Mutex;
280278

281279
struct Canary(*mut atomics::AtomicUint);
282280

src/liballoc/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ extern crate libc;
8484
// Allow testing this library
8585

8686
#[cfg(test)] extern crate debug;
87-
#[cfg(test)] extern crate sync;
8887
#[cfg(test)] extern crate native;
8988
#[cfg(test, stage0)] #[phase(syntax, link)] extern crate std;
9089
#[cfg(test, stage0)] #[phase(syntax, link)] extern crate log;

src/libcollections/lib.rs

+2
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,10 @@ pub use enum_set::EnumSet;
5252
pub use priority_queue::PriorityQueue;
5353
pub use ringbuf::RingBuf;
5454
pub use smallintmap::SmallIntMap;
55+
pub use string::String;
5556
pub use treemap::{TreeMap, TreeSet};
5657
pub use trie::{TrieMap, TrieSet};
58+
pub use vec::Vec;
5759

5860
mod macros;
5961

src/libcore/atomics.rs

+5-7
Original file line numberDiff line numberDiff line change
@@ -121,16 +121,14 @@ impl AtomicBool {
121121
///
122122
/// # Examples
123123
///
124-
/// ```ignore
125-
/// # // FIXME: Needs PR #12430
126-
/// extern crate sync;
127-
///
128-
/// use sync::Arc;
124+
/// ```rust
125+
/// use std::sync::Arc;
129126
/// use std::sync::atomics::{AtomicBool, SeqCst};
127+
/// use std::task::deschedule;
130128
///
131129
/// fn main() {
132130
/// let spinlock = Arc::new(AtomicBool::new(false));
133-
/// let spinlock_clone = spin_lock.clone();
131+
/// let spinlock_clone = spinlock.clone();
134132
///
135133
/// spawn(proc() {
136134
/// with_lock(&spinlock, || println!("task 1 in lock"));
@@ -155,7 +153,7 @@ impl AtomicBool {
155153
/// f();
156154
///
157155
/// // Release the lock
158-
/// spinlock.store(false);
156+
/// spinlock.store(false, SeqCst);
159157
/// }
160158
/// ```
161159
#[inline]

src/libcore/macros.rs

+3
Original file line numberDiff line numberDiff line change
@@ -131,3 +131,6 @@ macro_rules! write(
131131
format_args_method!($dst, write_fmt, $($arg)*)
132132
})
133133
)
134+
135+
#[macro_export]
136+
macro_rules! unreachable( () => (fail!("unreachable code")) )

src/liblog/lib.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -117,17 +117,14 @@ if logging is disabled, none of the components of the log will be executed.
117117
#![feature(macro_rules)]
118118
#![deny(missing_doc, deprecated_owned_vector)]
119119

120-
extern crate sync;
121-
122120
use std::fmt;
123121
use std::io::LineBufferedWriter;
124122
use std::io;
125123
use std::mem;
126124
use std::os;
127125
use std::rt;
128126
use std::slice;
129-
130-
use sync::one::{Once, ONCE_INIT};
127+
use std::sync::{Once, ONCE_INIT};
131128

132129
use directive::LOG_LEVEL_NAMES;
133130

src/librustc/back/link.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ pub mod write {
386386
}
387387

388388
unsafe fn configure_llvm(sess: &Session) {
389-
use sync::one::{Once, ONCE_INIT};
389+
use std::sync::{Once, ONCE_INIT};
390390
static mut INIT: Once = ONCE_INIT;
391391

392392
// Copy what clang does by turning on loop vectorization at O2 and

src/librustc/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ extern crate getopts;
3838
extern crate graphviz;
3939
extern crate libc;
4040
extern crate serialize;
41-
extern crate sync;
4241
extern crate syntax;
4342
extern crate time;
4443

src/librustc/middle/trans/base.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2296,7 +2296,7 @@ pub fn trans_crate(krate: ast::Crate,
22962296

22972297
// Before we touch LLVM, make sure that multithreading is enabled.
22982298
unsafe {
2299-
use sync::one::{Once, ONCE_INIT};
2299+
use std::sync::{Once, ONCE_INIT};
23002300
static mut INIT: Once = ONCE_INIT;
23012301
static mut POISONED: bool = false;
23022302
INIT.doit(|| {

src/librustdoc/html/render.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ use std::io::{fs, File, BufferedWriter, MemWriter, BufferedReader};
3939
use std::io;
4040
use std::str;
4141
use std::string::String;
42+
use std::sync::Arc;
4243

43-
use sync::Arc;
4444
use serialize::json::ToJson;
4545
use syntax::ast;
4646
use syntax::ast_util;

src/librustdoc/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ extern crate getopts;
2121
extern crate libc;
2222
extern crate rustc;
2323
extern crate serialize;
24-
extern crate sync;
2524
extern crate syntax;
2625
extern crate testing = "test";
2726
extern crate time;

src/librustrt/lib.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
1616
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
1717
html_root_url = "http://doc.rust-lang.org/")]
18-
#![feature(macro_rules, phase, globs, thread_local, managed_boxes, asm)]
18+
#![feature(macro_rules, phase, globs, thread_local, managed_boxes, asm,
19+
linkage)]
1920
#![no_std]
2021
#![experimental]
2122

@@ -58,6 +59,7 @@ mod libunwind;
5859

5960
pub mod args;
6061
pub mod bookkeeping;
62+
pub mod c_str;
6163
pub mod exclusive;
6264
pub mod local;
6365
pub mod local_data;
@@ -66,8 +68,8 @@ pub mod mutex;
6668
pub mod rtio;
6769
pub mod stack;
6870
pub mod task;
71+
pub mod thread;
6972
pub mod unwind;
70-
pub mod c_str;
7173

7274
/// The interface to the current runtime.
7375
///

0 commit comments

Comments
 (0)