]> git.proxmox.com Git - rustc.git/blame - src/libstd/rt.rs
New upstream version 1.14.0+dfsg1
[rustc.git] / src / libstd / rt.rs
CommitLineData
e9174d1e
SL
1// Copyright 2013 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//! Runtime services
12//!
13//! The `rt` module provides a narrow set of runtime services,
14//! including the global heap (exported in `heap`) and unwinding and
15//! backtrace support. The APIs in this module are highly unstable,
16//! and should be considered as private implementation details for the
17//! time being.
18
19#![unstable(feature = "rt",
20 reason = "this public module should not exist and is highly likely \
21 to disappear",
22 issue = "0")]
23#![doc(hidden)]
24
9cc50fc6 25
e9174d1e
SL
26
27// Reexport some of our utilities which are expected by other crates.
5bcae85e 28pub use panicking::{begin_panic, begin_panic_fmt, update_panic_count};
e9174d1e
SL
29
30#[cfg(not(test))]
31#[lang = "start"]
32fn lang_start(main: *const u8, argc: isize, argv: *const *const u8) -> isize {
9cc50fc6
SL
33 use mem;
34 use panic;
35 use sys;
36 use sys_common;
37 use sys_common::thread_info::{self, NewThread};
38 use thread::Thread;
39
e9174d1e
SL
40 sys::init();
41
42 let failed = unsafe {
43 let main_guard = sys::thread::guard::init();
44 sys::stack_overflow::init();
45
46 // Next, set up the current Thread with the guard information we just
47 // created. Note that this isn't necessary in general for new threads,
48 // but we just do this to name the main thread and to give it correct
49 // info about the stack bounds.
3157f602 50 let thread: Thread = NewThread::new(Some("main".to_owned()));
e9174d1e
SL
51 thread_info::set(main_guard, thread);
52
53 // Store our args if necessary in a squirreled away location
c30ab7b3 54 sys::args::init(argc, argv);
e9174d1e
SL
55
56 // Let's run some code!
54a0048b 57 let res = panic::catch_unwind(mem::transmute::<_, fn()>(main));
e9174d1e
SL
58 sys_common::cleanup();
59 res.is_err()
60 };
61
62 if failed {
63 101
64 } else {
65 0
66 }
67}