]> git.lizzy.rs Git - rust.git/blob - src/libstd/thread/mod.rs
6a923c8c094bfc80fa8792619c8c320a0b11ca69
[rust.git] / src / libstd / thread / mod.rs
1 // Copyright 2014 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.
10
11 //! Native threads.
12 //!
13 //! ## The threading model
14 //!
15 //! An executing Rust program consists of a collection of native OS threads,
16 //! each with their own stack and local state.
17 //!
18 //! Communication between threads can be done through
19 //! [channels](../../std/sync/mpsc/index.html), Rust's message-passing
20 //! types, along with [other forms of thread
21 //! synchronization](../../std/sync/index.html) and shared-memory data
22 //! structures. In particular, types that are guaranteed to be
23 //! threadsafe are easily shared between threads using the
24 //! atomically-reference-counted container,
25 //! [`Arc`](../../std/sync/struct.Arc.html).
26 //!
27 //! Fatal logic errors in Rust cause *thread panic*, during which
28 //! a thread will unwind the stack, running destructors and freeing
29 //! owned resources. Thread panic is unrecoverable from within
30 //! the panicking thread (i.e. there is no 'try/catch' in Rust), but
31 //! the panic may optionally be detected from a different thread. If
32 //! the main thread panics, the application will exit with a non-zero
33 //! exit code.
34 //!
35 //! When the main thread of a Rust program terminates, the entire program shuts
36 //! down, even if other threads are still running. However, this module provides
37 //! convenient facilities for automatically waiting for the termination of a
38 //! child thread (i.e., join).
39 //!
40 //! ## The `Thread` type
41 //!
42 //! Threads are represented via the `Thread` type, which you can
43 //! get in one of two ways:
44 //!
45 //! * By spawning a new thread, e.g. using the `thread::spawn` function.
46 //! * By requesting the current thread, using the `thread::current` function.
47 //!
48 //! Threads can be named, and provide some built-in support for low-level
49 //! synchronization (described below).
50 //!
51 //! The `thread::current()` function is available even for threads not spawned
52 //! by the APIs of this module.
53 //!
54 //! ## Spawning a thread
55 //!
56 //! A new thread can be spawned using the `thread::spawn` function:
57 //!
58 //! ```rust
59 //! use std::thread;
60 //!
61 //! thread::spawn(move || {
62 //!     // some work here
63 //! });
64 //! ```
65 //!
66 //! In this example, the spawned thread is "detached" from the current
67 //! thread. This means that it can outlive its parent (the thread that spawned
68 //! it), unless this parent is the main thread.
69 //!
70 //! The parent thread can also wait on the completion of the child
71 //! thread; a call to `spawn` produces a `JoinHandle`, which provides
72 //! a `join` method for waiting:
73 //!
74 //! ```rust
75 //! use std::thread;
76 //!
77 //! let child = thread::spawn(move || {
78 //!     // some work here
79 //! });
80 //! // some work here
81 //! let res = child.join();
82 //! ```
83 //!
84 //! The `join` method returns a `Result` containing `Ok` of the final
85 //! value produced by the child thread, or `Err` of the value given to
86 //! a call to `panic!` if the child panicked.
87 //!
88 //! ## Configuring threads
89 //!
90 //! A new thread can be configured before it is spawned via the `Builder` type,
91 //! which currently allows you to set the name and stack size for the child thread:
92 //!
93 //! ```rust
94 //! # #![allow(unused_must_use)]
95 //! use std::thread;
96 //!
97 //! thread::Builder::new().name("child1".to_string()).spawn(move || {
98 //!     println!("Hello, world!");
99 //! });
100 //! ```
101 //!
102 //! ## Blocking support: park and unpark
103 //!
104 //! Every thread is equipped with some basic low-level blocking support, via the
105 //! `park` and `unpark` functions.
106 //!
107 //! Conceptually, each `Thread` handle has an associated token, which is
108 //! initially not present:
109 //!
110 //! * The `thread::park()` function blocks the current thread unless or until
111 //!   the token is available for its thread handle, at which point it atomically
112 //!   consumes the token. It may also return *spuriously*, without consuming the
113 //!   token. `thread::park_timeout()` does the same, but allows specifying a
114 //!   maximum time to block the thread for.
115 //!
116 //! * The `unpark()` method on a `Thread` atomically makes the token available
117 //!   if it wasn't already.
118 //!
119 //! In other words, each `Thread` acts a bit like a semaphore with initial count
120 //! 0, except that the semaphore is *saturating* (the count cannot go above 1),
121 //! and can return spuriously.
122 //!
123 //! The API is typically used by acquiring a handle to the current thread,
124 //! placing that handle in a shared data structure so that other threads can
125 //! find it, and then `park`ing. When some desired condition is met, another
126 //! thread calls `unpark` on the handle.
127 //!
128 //! The motivation for this design is twofold:
129 //!
130 //! * It avoids the need to allocate mutexes and condvars when building new
131 //!   synchronization primitives; the threads already provide basic blocking/signaling.
132 //!
133 //! * It can be implemented very efficiently on many platforms.
134 //!
135 //! ## Thread-local storage
136 //!
137 //! This module also provides an implementation of thread local storage for Rust
138 //! programs. Thread local storage is a method of storing data into a global
139 //! variable which each thread in the program will have its own copy of.
140 //! Threads do not share this data, so accesses do not need to be synchronized.
141 //!
142 //! At a high level, this module provides two variants of storage:
143 //!
144 //! * Owned thread-local storage. This is a type of thread local key which
145 //!   owns the value that it contains, and will destroy the value when the
146 //!   thread exits. This variant is created with the `thread_local!` macro and
147 //!   can contain any value which is `'static` (no borrowed pointers).
148 //!
149 //! * Scoped thread-local storage. This type of key is used to store a reference
150 //!   to a value into local storage temporarily for the scope of a function
151 //!   call. There are no restrictions on what types of values can be placed
152 //!   into this key.
153 //!
154 //! Both forms of thread local storage provide an accessor function, `with`,
155 //! which will yield a shared reference to the value to the specified
156 //! closure. Thread-local keys only allow shared access to values as there is no
157 //! way to guarantee uniqueness if a mutable borrow was allowed. Most values
158 //! will want to make use of some form of **interior mutability** through the
159 //! `Cell` or `RefCell` types.
160
161 #![stable(feature = "rust1", since = "1.0.0")]
162
163 use prelude::v1::*;
164
165 use any::Any;
166 use cell::UnsafeCell;
167 use fmt;
168 use io;
169 use sync::{Mutex, Condvar, Arc};
170 use sys::thread as imp;
171 use sys_common::thread_info;
172 use sys_common::unwind;
173 use sys_common::util;
174 use sys_common::{AsInner, IntoInner};
175 use time::Duration;
176
177 ////////////////////////////////////////////////////////////////////////////////
178 // Thread-local storage
179 ////////////////////////////////////////////////////////////////////////////////
180
181 #[macro_use] mod local;
182 #[macro_use] mod scoped_tls;
183
184 #[stable(feature = "rust1", since = "1.0.0")]
185 pub use self::local::{LocalKey, LocalKeyState};
186
187 #[unstable(feature = "scoped_tls",
188            reason = "scoped TLS has yet to have wide enough use to fully \
189                      consider stabilizing its interface",
190            issue = "27715")]
191 #[allow(deprecated)]
192 pub use self::scoped_tls::ScopedKey;
193
194 #[unstable(feature = "libstd_thread_internals", issue = "0")]
195 #[cfg(target_thread_local)]
196 #[doc(hidden)] pub use self::local::elf::Key as __ElfLocalKeyInner;
197 #[unstable(feature = "libstd_thread_internals", issue = "0")]
198 #[doc(hidden)] pub use self::local::os::Key as __OsLocalKeyInner;
199 #[unstable(feature = "libstd_thread_internals", issue = "0")]
200 #[doc(hidden)] pub use self::scoped_tls::__KeyInner as __ScopedKeyInner;
201
202 ////////////////////////////////////////////////////////////////////////////////
203 // Builder
204 ////////////////////////////////////////////////////////////////////////////////
205
206 /// Thread configuration. Provides detailed control over the properties
207 /// and behavior of new threads.
208 #[stable(feature = "rust1", since = "1.0.0")]
209 pub struct Builder {
210     // A name for the thread-to-be, for identification in panic messages
211     name: Option<String>,
212     // The size of the stack for the spawned thread
213     stack_size: Option<usize>,
214 }
215
216 impl Builder {
217     /// Generates the base configuration for spawning a thread, from which
218     /// configuration methods can be chained.
219     #[stable(feature = "rust1", since = "1.0.0")]
220     pub fn new() -> Builder {
221         Builder {
222             name: None,
223             stack_size: None,
224         }
225     }
226
227     /// Names the thread-to-be. Currently the name is used for identification
228     /// only in panic messages.
229     #[stable(feature = "rust1", since = "1.0.0")]
230     pub fn name(mut self, name: String) -> Builder {
231         self.name = Some(name);
232         self
233     }
234
235     /// Sets the size of the stack for the new thread.
236     #[stable(feature = "rust1", since = "1.0.0")]
237     pub fn stack_size(mut self, size: usize) -> Builder {
238         self.stack_size = Some(size);
239         self
240     }
241
242     /// Spawns a new thread, and returns a join handle for it.
243     ///
244     /// The child thread may outlive the parent (unless the parent thread
245     /// is the main thread; the whole process is terminated when the main
246     /// thread finishes). The join handle can be used to block on
247     /// termination of the child thread, including recovering its panics.
248     ///
249     /// # Errors
250     ///
251     /// Unlike the `spawn` free function, this method yields an
252     /// `io::Result` to capture any failure to create the thread at
253     /// the OS level.
254     #[stable(feature = "rust1", since = "1.0.0")]
255     pub fn spawn<F, T>(self, f: F) -> io::Result<JoinHandle<T>> where
256         F: FnOnce() -> T, F: Send + 'static, T: Send + 'static
257     {
258         let Builder { name, stack_size } = self;
259
260         let stack_size = stack_size.unwrap_or(util::min_stack());
261
262         let my_thread = Thread::new(name);
263         let their_thread = my_thread.clone();
264
265         let my_packet : Arc<UnsafeCell<Option<Result<T>>>>
266             = Arc::new(UnsafeCell::new(None));
267         let their_packet = my_packet.clone();
268
269         let main = move || {
270             if let Some(name) = their_thread.name() {
271                 imp::Thread::set_name(name);
272             }
273             unsafe {
274                 thread_info::set(imp::guard::current(), their_thread);
275                 let mut output = None;
276                 let try_result = {
277                     let ptr = &mut output;
278                     unwind::try(move || *ptr = Some(f()))
279                 };
280                 *their_packet.get() = Some(try_result.map(|()| {
281                     output.unwrap()
282                 }));
283             }
284         };
285
286         Ok(JoinHandle(JoinInner {
287             native: unsafe {
288                 Some(try!(imp::Thread::new(stack_size, Box::new(main))))
289             },
290             thread: my_thread,
291             packet: Packet(my_packet),
292         }))
293     }
294 }
295
296 ////////////////////////////////////////////////////////////////////////////////
297 // Free functions
298 ////////////////////////////////////////////////////////////////////////////////
299
300 /// Spawns a new thread, returning a `JoinHandle` for it.
301 ///
302 /// The join handle will implicitly *detach* the child thread upon being
303 /// dropped. In this case, the child thread may outlive the parent (unless
304 /// the parent thread is the main thread; the whole process is terminated when
305 /// the main thread finishes.) Additionally, the join handle provides a `join`
306 /// method that can be used to join the child thread. If the child thread
307 /// panics, `join` will return an `Err` containing the argument given to
308 /// `panic`.
309 ///
310 /// # Panics
311 ///
312 /// Panics if the OS fails to create a thread; use `Builder::spawn`
313 /// to recover from such errors.
314 #[stable(feature = "rust1", since = "1.0.0")]
315 pub fn spawn<F, T>(f: F) -> JoinHandle<T> where
316     F: FnOnce() -> T, F: Send + 'static, T: Send + 'static
317 {
318     Builder::new().spawn(f).unwrap()
319 }
320
321 /// Gets a handle to the thread that invokes it.
322 #[stable(feature = "rust1", since = "1.0.0")]
323 pub fn current() -> Thread {
324     thread_info::current_thread().expect("use of std::thread::current() is not \
325                                           possible after the thread's local \
326                                           data has been destroyed")
327 }
328
329 /// Cooperatively gives up a timeslice to the OS scheduler.
330 #[stable(feature = "rust1", since = "1.0.0")]
331 pub fn yield_now() {
332     imp::Thread::yield_now()
333 }
334
335 /// Determines whether the current thread is unwinding because of panic.
336 #[inline]
337 #[stable(feature = "rust1", since = "1.0.0")]
338 pub fn panicking() -> bool {
339     unwind::panicking()
340 }
341
342 /// Invokes a closure, capturing the cause of panic if one occurs.
343 ///
344 /// This function will return `Ok` with the closure's result if the closure
345 /// does not panic, and will return `Err(cause)` if the closure panics. The
346 /// `cause` returned is the object with which panic was originally invoked.
347 ///
348 /// It is currently undefined behavior to unwind from Rust code into foreign
349 /// code, so this function is particularly useful when Rust is called from
350 /// another language (normally C). This can run arbitrary Rust code, capturing a
351 /// panic and allowing a graceful handling of the error.
352 ///
353 /// It is **not** recommended to use this function for a general try/catch
354 /// mechanism. The `Result` type is more appropriate to use for functions that
355 /// can fail on a regular basis.
356 ///
357 /// The closure provided is required to adhere to the `'static` bound to ensure
358 /// that it cannot reference data in the parent stack frame, mitigating problems
359 /// with exception safety. Furthermore, a `Send` bound is also required,
360 /// providing the same safety guarantees as `thread::spawn` (ensuring the
361 /// closure is properly isolated from the parent).
362 #[unstable(feature = "catch_panic", reason = "recent API addition",
363            issue = "27719")]
364 #[rustc_deprecated(since = "1.6.0", reason = "renamed to std::panic::recover")]
365 pub fn catch_panic<F, R>(f: F) -> Result<R>
366     where F: FnOnce() -> R + Send + 'static
367 {
368     let mut result = None;
369     unsafe {
370         let result = &mut result;
371         try!(unwind::try(move || *result = Some(f())))
372     }
373     Ok(result.unwrap())
374 }
375
376 /// Puts the current thread to sleep for the specified amount of time.
377 ///
378 /// The thread may sleep longer than the duration specified due to scheduling
379 /// specifics or platform-dependent functionality. Note that on unix platforms
380 /// this function will not return early due to a signal being received or a
381 /// spurious wakeup.
382 #[stable(feature = "rust1", since = "1.0.0")]
383 #[rustc_deprecated(since = "1.6.0", reason = "replaced by `std::thread::sleep`")]
384 pub fn sleep_ms(ms: u32) {
385     sleep(Duration::from_millis(ms as u64))
386 }
387
388 /// Puts the current thread to sleep for the specified amount of time.
389 ///
390 /// The thread may sleep longer than the duration specified due to scheduling
391 /// specifics or platform-dependent functionality.
392 ///
393 /// # Platform behavior
394 ///
395 /// On Unix platforms this function will not return early due to a
396 /// signal being received or a spurious wakeup. Platforms which do not support
397 /// nanosecond precision for sleeping will have `dur` rounded up to the nearest
398 /// granularity of time they can sleep for.
399 #[stable(feature = "thread_sleep", since = "1.4.0")]
400 pub fn sleep(dur: Duration) {
401     imp::Thread::sleep(dur)
402 }
403
404 /// Blocks unless or until the current thread's token is made available.
405 ///
406 /// Every thread is equipped with some basic low-level blocking support, via
407 /// the `park()` function and the [`unpark()`][unpark] method. These can be
408 /// used as a more CPU-efficient implementation of a spinlock.
409 ///
410 /// [unpark]: struct.Thread.html#method.unpark
411 ///
412 /// The API is typically used by acquiring a handle to the current thread,
413 /// placing that handle in a shared data structure so that other threads can
414 /// find it, and then parking (in a loop with a check for the token actually
415 /// being acquired).
416 ///
417 /// A call to `park` does not guarantee that the thread will remain parked
418 /// forever, and callers should be prepared for this possibility.
419 ///
420 /// See the [module documentation][thread] for more detail.
421 ///
422 /// [thread]: index.html
423 //
424 // The implementation currently uses the trivial strategy of a Mutex+Condvar
425 // with wakeup flag, which does not actually allow spurious wakeups. In the
426 // future, this will be implemented in a more efficient way, perhaps along the lines of
427 //   http://cr.openjdk.java.net/~stefank/6989984.1/raw_files/new/src/os/linux/vm/os_linux.cpp
428 // or futuxes, and in either case may allow spurious wakeups.
429 #[stable(feature = "rust1", since = "1.0.0")]
430 pub fn park() {
431     let thread = current();
432     let mut guard = thread.inner.lock.lock().unwrap();
433     while !*guard {
434         guard = thread.inner.cvar.wait(guard).unwrap();
435     }
436     *guard = false;
437 }
438
439 /// Blocks unless or until the current thread's token is made available or
440 /// the specified duration has been reached (may wake spuriously).
441 ///
442 /// The semantics of this function are equivalent to `park()` except that the
443 /// thread will be blocked for roughly no longer than *ms*. This method
444 /// should not be used for precise timing due to anomalies such as
445 /// preemption or platform differences that may not cause the maximum
446 /// amount of time waited to be precisely *ms* long.
447 ///
448 /// See the module doc for more detail.
449 #[stable(feature = "rust1", since = "1.0.0")]
450 #[rustc_deprecated(since = "1.6.0", reason = "replaced by `std::thread::park_timeout`")]
451 pub fn park_timeout_ms(ms: u32) {
452     park_timeout(Duration::from_millis(ms as u64))
453 }
454
455 /// Blocks unless or until the current thread's token is made available or
456 /// the specified duration has been reached (may wake spuriously).
457 ///
458 /// The semantics of this function are equivalent to `park()` except that the
459 /// thread will be blocked for roughly no longer than *dur*. This method
460 /// should not be used for precise timing due to anomalies such as
461 /// preemption or platform differences that may not cause the maximum
462 /// amount of time waited to be precisely *dur* long.
463 ///
464 /// See the module doc for more detail.
465 ///
466 /// # Platform behavior
467 ///
468 /// Platforms which do not support nanosecond precision for sleeping will have
469 /// `dur` rounded up to the nearest granularity of time they can sleep for.
470 #[stable(feature = "park_timeout", since = "1.4.0")]
471 pub fn park_timeout(dur: Duration) {
472     let thread = current();
473     let mut guard = thread.inner.lock.lock().unwrap();
474     if !*guard {
475         let (g, _) = thread.inner.cvar.wait_timeout(guard, dur).unwrap();
476         guard = g;
477     }
478     *guard = false;
479 }
480
481 ////////////////////////////////////////////////////////////////////////////////
482 // Thread
483 ////////////////////////////////////////////////////////////////////////////////
484
485 /// The internal representation of a `Thread` handle
486 struct Inner {
487     name: Option<String>,
488     lock: Mutex<bool>,          // true when there is a buffered unpark
489     cvar: Condvar,
490 }
491
492 #[derive(Clone)]
493 #[stable(feature = "rust1", since = "1.0.0")]
494 /// A handle to a thread.
495 pub struct Thread {
496     inner: Arc<Inner>,
497 }
498
499 impl Thread {
500     // Used only internally to construct a thread object without spawning
501     fn new(name: Option<String>) -> Thread {
502         Thread {
503             inner: Arc::new(Inner {
504                 name: name,
505                 lock: Mutex::new(false),
506                 cvar: Condvar::new(),
507             })
508         }
509     }
510
511     /// Atomically makes the handle's token available if it is not already.
512     ///
513     /// See the module doc for more detail.
514     #[stable(feature = "rust1", since = "1.0.0")]
515     pub fn unpark(&self) {
516         let mut guard = self.inner.lock.lock().unwrap();
517         if !*guard {
518             *guard = true;
519             self.inner.cvar.notify_one();
520         }
521     }
522
523     /// Gets the thread's name.
524     #[stable(feature = "rust1", since = "1.0.0")]
525     pub fn name(&self) -> Option<&str> {
526         self.inner.name.as_ref().map(|s| &**s)
527     }
528 }
529
530 #[stable(feature = "rust1", since = "1.0.0")]
531 impl fmt::Debug for Thread {
532     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
533         fmt::Debug::fmt(&self.name(), f)
534     }
535 }
536
537 // a hack to get around privacy restrictions
538 impl thread_info::NewThread for Thread {
539     fn new(name: Option<String>) -> Thread { Thread::new(name) }
540 }
541
542 ////////////////////////////////////////////////////////////////////////////////
543 // JoinHandle
544 ////////////////////////////////////////////////////////////////////////////////
545
546 /// Indicates the manner in which a thread exited.
547 ///
548 /// A thread that completes without panicking is considered to exit successfully.
549 #[stable(feature = "rust1", since = "1.0.0")]
550 pub type Result<T> = ::result::Result<T, Box<Any + Send + 'static>>;
551
552 // This packet is used to communicate the return value between the child thread
553 // and the parent thread. Memory is shared through the `Arc` within and there's
554 // no need for a mutex here because synchronization happens with `join()` (the
555 // parent thread never reads this packet until the child has exited).
556 //
557 // This packet itself is then stored into a `JoinInner` which in turns is placed
558 // in `JoinHandle` and `JoinGuard`. Due to the usage of `UnsafeCell` we need to
559 // manually worry about impls like Send and Sync. The type `T` should
560 // already always be Send (otherwise the thread could not have been created) and
561 // this type is inherently Sync because no methods take &self. Regardless,
562 // however, we add inheriting impls for Send/Sync to this type to ensure it's
563 // Send/Sync and that future modifications will still appropriately classify it.
564 struct Packet<T>(Arc<UnsafeCell<Option<Result<T>>>>);
565
566 unsafe impl<T: Send> Send for Packet<T> {}
567 unsafe impl<T: Sync> Sync for Packet<T> {}
568
569 /// Inner representation for JoinHandle
570 struct JoinInner<T> {
571     native: Option<imp::Thread>,
572     thread: Thread,
573     packet: Packet<T>,
574 }
575
576 impl<T> JoinInner<T> {
577     fn join(&mut self) -> Result<T> {
578         self.native.take().unwrap().join();
579         unsafe {
580             (*self.packet.0.get()).take().unwrap()
581         }
582     }
583 }
584
585 /// An owned permission to join on a thread (block on its termination).
586 ///
587 /// A `JoinHandle` *detaches* the child thread when it is dropped.
588 ///
589 /// Due to platform restrictions, it is not possible to `Clone` this
590 /// handle: the ability to join a child thread is a uniquely-owned
591 /// permission.
592 #[stable(feature = "rust1", since = "1.0.0")]
593 pub struct JoinHandle<T>(JoinInner<T>);
594
595 impl<T> JoinHandle<T> {
596     /// Extracts a handle to the underlying thread
597     #[stable(feature = "rust1", since = "1.0.0")]
598     pub fn thread(&self) -> &Thread {
599         &self.0.thread
600     }
601
602     /// Waits for the associated thread to finish.
603     ///
604     /// If the child thread panics, `Err` is returned with the parameter given
605     /// to `panic`.
606     #[stable(feature = "rust1", since = "1.0.0")]
607     pub fn join(mut self) -> Result<T> {
608         self.0.join()
609     }
610 }
611
612 impl<T> AsInner<imp::Thread> for JoinHandle<T> {
613     fn as_inner(&self) -> &imp::Thread { self.0.native.as_ref().unwrap() }
614 }
615
616 impl<T> IntoInner<imp::Thread> for JoinHandle<T> {
617     fn into_inner(self) -> imp::Thread { self.0.native.unwrap() }
618 }
619
620 fn _assert_sync_and_send() {
621     fn _assert_both<T: Send + Sync>() {}
622     _assert_both::<JoinHandle<()>>();
623     _assert_both::<Thread>();
624 }
625
626 ////////////////////////////////////////////////////////////////////////////////
627 // Tests
628 ////////////////////////////////////////////////////////////////////////////////
629
630 #[cfg(test)]
631 mod tests {
632     use prelude::v1::*;
633
634     use any::Any;
635     use sync::mpsc::{channel, Sender};
636     use result;
637     use super::{Builder};
638     use thread;
639     use time::Duration;
640     use u32;
641
642     // !!! These tests are dangerous. If something is buggy, they will hang, !!!
643     // !!! instead of exiting cleanly. This might wedge the buildbots.       !!!
644
645     #[test]
646     fn test_unnamed_thread() {
647         thread::spawn(move|| {
648             assert!(thread::current().name().is_none());
649         }).join().ok().unwrap();
650     }
651
652     #[test]
653     fn test_named_thread() {
654         Builder::new().name("ada lovelace".to_string()).spawn(move|| {
655             assert!(thread::current().name().unwrap() == "ada lovelace".to_string());
656         }).unwrap().join().unwrap();
657     }
658
659     #[test]
660     fn test_run_basic() {
661         let (tx, rx) = channel();
662         thread::spawn(move|| {
663             tx.send(()).unwrap();
664         });
665         rx.recv().unwrap();
666     }
667
668     #[test]
669     fn test_join_panic() {
670         match thread::spawn(move|| {
671             panic!()
672         }).join() {
673             result::Result::Err(_) => (),
674             result::Result::Ok(()) => panic!()
675         }
676     }
677
678     #[test]
679     fn test_spawn_sched() {
680         use clone::Clone;
681
682         let (tx, rx) = channel();
683
684         fn f(i: i32, tx: Sender<()>) {
685             let tx = tx.clone();
686             thread::spawn(move|| {
687                 if i == 0 {
688                     tx.send(()).unwrap();
689                 } else {
690                     f(i - 1, tx);
691                 }
692             });
693
694         }
695         f(10, tx);
696         rx.recv().unwrap();
697     }
698
699     #[test]
700     fn test_spawn_sched_childs_on_default_sched() {
701         let (tx, rx) = channel();
702
703         thread::spawn(move|| {
704             thread::spawn(move|| {
705                 tx.send(()).unwrap();
706             });
707         });
708
709         rx.recv().unwrap();
710     }
711
712     fn avoid_copying_the_body<F>(spawnfn: F) where F: FnOnce(Box<Fn() + Send>) {
713         let (tx, rx) = channel();
714
715         let x: Box<_> = box 1;
716         let x_in_parent = (&*x) as *const i32 as usize;
717
718         spawnfn(Box::new(move|| {
719             let x_in_child = (&*x) as *const i32 as usize;
720             tx.send(x_in_child).unwrap();
721         }));
722
723         let x_in_child = rx.recv().unwrap();
724         assert_eq!(x_in_parent, x_in_child);
725     }
726
727     #[test]
728     fn test_avoid_copying_the_body_spawn() {
729         avoid_copying_the_body(|v| {
730             thread::spawn(move || v());
731         });
732     }
733
734     #[test]
735     fn test_avoid_copying_the_body_thread_spawn() {
736         avoid_copying_the_body(|f| {
737             thread::spawn(move|| {
738                 f();
739             });
740         })
741     }
742
743     #[test]
744     fn test_avoid_copying_the_body_join() {
745         avoid_copying_the_body(|f| {
746             let _ = thread::spawn(move|| {
747                 f()
748             }).join();
749         })
750     }
751
752     #[test]
753     fn test_child_doesnt_ref_parent() {
754         // If the child refcounts the parent thread, this will stack overflow when
755         // climbing the thread tree to dereference each ancestor. (See #1789)
756         // (well, it would if the constant were 8000+ - I lowered it to be more
757         // valgrind-friendly. try this at home, instead..!)
758         const GENERATIONS: u32 = 16;
759         fn child_no(x: u32) -> Box<Fn() + Send> {
760             return Box::new(move|| {
761                 if x < GENERATIONS {
762                     thread::spawn(move|| child_no(x+1)());
763                 }
764             });
765         }
766         thread::spawn(|| child_no(0)());
767     }
768
769     #[test]
770     fn test_simple_newsched_spawn() {
771         thread::spawn(move || {});
772     }
773
774     #[test]
775     fn test_try_panic_message_static_str() {
776         match thread::spawn(move|| {
777             panic!("static string");
778         }).join() {
779             Err(e) => {
780                 type T = &'static str;
781                 assert!(e.is::<T>());
782                 assert_eq!(*e.downcast::<T>().unwrap(), "static string");
783             }
784             Ok(()) => panic!()
785         }
786     }
787
788     #[test]
789     fn test_try_panic_message_owned_str() {
790         match thread::spawn(move|| {
791             panic!("owned string".to_string());
792         }).join() {
793             Err(e) => {
794                 type T = String;
795                 assert!(e.is::<T>());
796                 assert_eq!(*e.downcast::<T>().unwrap(), "owned string".to_string());
797             }
798             Ok(()) => panic!()
799         }
800     }
801
802     #[test]
803     fn test_try_panic_message_any() {
804         match thread::spawn(move|| {
805             panic!(box 413u16 as Box<Any + Send>);
806         }).join() {
807             Err(e) => {
808                 type T = Box<Any + Send>;
809                 assert!(e.is::<T>());
810                 let any = e.downcast::<T>().unwrap();
811                 assert!(any.is::<u16>());
812                 assert_eq!(*any.downcast::<u16>().unwrap(), 413);
813             }
814             Ok(()) => panic!()
815         }
816     }
817
818     #[test]
819     fn test_try_panic_message_unit_struct() {
820         struct Juju;
821
822         match thread::spawn(move|| {
823             panic!(Juju)
824         }).join() {
825             Err(ref e) if e.is::<Juju>() => {}
826             Err(_) | Ok(()) => panic!()
827         }
828     }
829
830     #[test]
831     fn test_park_timeout_unpark_before() {
832         for _ in 0..10 {
833             thread::current().unpark();
834             thread::park_timeout(Duration::from_millis(u32::MAX as u64));
835         }
836     }
837
838     #[test]
839     fn test_park_timeout_unpark_not_called() {
840         for _ in 0..10 {
841             thread::park_timeout(Duration::from_millis(10));
842         }
843     }
844
845     #[test]
846     fn test_park_timeout_unpark_called_other_thread() {
847         for _ in 0..10 {
848             let th = thread::current();
849
850             let _guard = thread::spawn(move || {
851                 super::sleep(Duration::from_millis(50));
852                 th.unpark();
853             });
854
855             thread::park_timeout(Duration::from_millis(u32::MAX as u64));
856         }
857     }
858
859     #[test]
860     fn sleep_ms_smoke() {
861         thread::sleep(Duration::from_millis(2));
862     }
863
864     // NOTE: the corresponding test for stderr is in run-pass/thread-stderr, due
865     // to the test harness apparently interfering with stderr configuration.
866 }