Fix repeated module documentation
This commit is contained in:
parent
c2b6ab94e2
commit
6c41253a47
10 changed files with 30 additions and 25 deletions
|
|
@ -8,6 +8,8 @@
|
|||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
|
||||
//! Simple backtrace functionality (to print on failure)
|
||||
|
||||
#![allow(non_camel_case_types)]
|
||||
|
||||
use char::Char;
|
||||
|
|
|
|||
|
|
@ -8,6 +8,9 @@
|
|||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
|
||||
|
||||
//! The global (exchange) heap.
|
||||
|
||||
use libc::{c_void, size_t, free, malloc, realloc};
|
||||
use ptr::{RawPtr, mut_null};
|
||||
use intrinsics::abort;
|
||||
|
|
|
|||
|
|
@ -85,44 +85,44 @@ pub mod shouldnt_be_public {
|
|||
// Internal macros used by the runtime.
|
||||
mod macros;
|
||||
|
||||
/// The global (exchange) heap.
|
||||
// The global (exchange) heap.
|
||||
pub mod global_heap;
|
||||
|
||||
/// Implementations of language-critical runtime features like @.
|
||||
// Implementations of language-critical runtime features like @.
|
||||
pub mod task;
|
||||
|
||||
/// The EventLoop and internal synchronous I/O interface.
|
||||
// The EventLoop and internal synchronous I/O interface.
|
||||
pub mod rtio;
|
||||
|
||||
/// The Local trait for types that are accessible via thread-local
|
||||
/// or task-local storage.
|
||||
// The Local trait for types that are accessible via thread-local
|
||||
// or task-local storage.
|
||||
pub mod local;
|
||||
|
||||
/// Bindings to system threading libraries.
|
||||
// Bindings to system threading libraries.
|
||||
pub mod thread;
|
||||
|
||||
/// The runtime configuration, read from environment variables.
|
||||
// The runtime configuration, read from environment variables.
|
||||
pub mod env;
|
||||
|
||||
/// The local, managed heap
|
||||
// The local, managed heap
|
||||
pub mod local_heap;
|
||||
|
||||
/// The runtime needs to be able to put a pointer into thread-local storage.
|
||||
// The runtime needs to be able to put a pointer into thread-local storage.
|
||||
mod local_ptr;
|
||||
|
||||
/// Bindings to pthread/windows thread-local storage.
|
||||
// Bindings to pthread/windows thread-local storage.
|
||||
mod thread_local_storage;
|
||||
|
||||
/// Stack unwinding
|
||||
// Stack unwinding
|
||||
pub mod unwind;
|
||||
|
||||
/// The interface to libunwind that rust is using.
|
||||
// The interface to libunwind that rust is using.
|
||||
mod libunwind;
|
||||
|
||||
/// Simple backtrace functionality (to print on failure)
|
||||
// Simple backtrace functionality (to print on failure)
|
||||
pub mod backtrace;
|
||||
|
||||
/// Just stuff
|
||||
// Just stuff
|
||||
mod util;
|
||||
|
||||
// Global command line argument storage
|
||||
|
|
|
|||
|
|
@ -8,6 +8,8 @@
|
|||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
|
||||
//! The EventLoop and internal synchronous I/O interface.
|
||||
|
||||
use c_str::CString;
|
||||
use cast;
|
||||
use comm::{Sender, Receiver};
|
||||
|
|
|
|||
|
|
@ -8,6 +8,8 @@
|
|||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
|
||||
//! Stack unwinding
|
||||
|
||||
// Implementation of Rust stack unwinding
|
||||
//
|
||||
// For background on exception handling and stack unwinding please see
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue