@@ -85,44 +85,44 @@ pub mod shouldnt_be_public {
8585// Internal macros used by the runtime.
8686mod macros;
8787
88- /// The global (exchange) heap.
88+ // The global (exchange) heap.
8989pub mod global_heap;
9090
91- /// Implementations of language-critical runtime features like @.
91+ // Implementations of language-critical runtime features like @.
9292pub mod task;
9393
94- /// The EventLoop and internal synchronous I/O interface.
94+ // The EventLoop and internal synchronous I/O interface.
9595pub mod rtio;
9696
97- /// The Local trait for types that are accessible via thread-local
98- /// or task-local storage.
97+ // The Local trait for types that are accessible via thread-local
98+ // or task-local storage.
9999pub mod local;
100100
101- /// Bindings to system threading libraries.
101+ // Bindings to system threading libraries.
102102pub mod thread;
103103
104- /// The runtime configuration, read from environment variables.
104+ // The runtime configuration, read from environment variables.
105105pub mod env;
106106
107- /// The local, managed heap
107+ // The local, managed heap
108108pub mod local_heap;
109109
110- /// The runtime needs to be able to put a pointer into thread-local storage.
110+ // The runtime needs to be able to put a pointer into thread-local storage.
111111mod local_ptr;
112112
113- /// Bindings to pthread/windows thread-local storage.
113+ // Bindings to pthread/windows thread-local storage.
114114mod thread_local_storage;
115115
116- /// Stack unwinding
116+ // Stack unwinding
117117pub mod unwind;
118118
119- /// The interface to libunwind that rust is using.
119+ // The interface to libunwind that rust is using.
120120mod libunwind;
121121
122- /// Simple backtrace functionality (to print on failure)
122+ // Simple backtrace functionality (to print on failure)
123123pub mod backtrace;
124124
125- /// Just stuff
125+ // Just stuff
126126mod util;
127127
128128// Global command line argument storage
0 commit comments