]> git.lizzy.rs Git - rust.git/blob - src/libstd/sys/wasm/thread.rs
Rollup merge of #52771 - matklad:patch-1, r=kennytm
[rust.git] / src / libstd / sys / wasm / thread.rs
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.
10
11 use boxed::FnBox;
12 use ffi::CStr;
13 use io;
14 use sys::{unsupported, Void};
15 use time::Duration;
16
17 pub struct Thread(Void);
18
19 pub const DEFAULT_MIN_STACK_SIZE: usize = 4096;
20
21 impl Thread {
22     pub unsafe fn new<'a>(_stack: usize, _p: Box<dyn FnBox() + 'a>)
23         -> io::Result<Thread>
24     {
25         unsupported()
26     }
27
28     pub fn yield_now() {
29         // do nothing
30     }
31
32     pub fn set_name(_name: &CStr) {
33         // nope
34     }
35
36     pub fn sleep(_dur: Duration) {
37         panic!("can't sleep");
38     }
39
40     pub fn join(self) {
41         match self.0 {}
42     }
43 }
44
45 pub mod guard {
46     pub type Guard = !;
47     pub unsafe fn current() -> Option<Guard> { None }
48     pub unsafe fn init() -> Option<Guard> { None }
49     pub unsafe fn deinit() {}
50 }