From 0c889a04d87c3900af24405a6c6648b39aefa8a8 Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Thu, 16 Oct 2014 13:09:23 -0400 Subject: [PATCH 1/2] remove one more gc reference This is the last one. I shouldn't have submitted a PR so fast... --- src/libstd/rt/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/rt/mod.rs b/src/libstd/rt/mod.rs index 4490977bde619..661448079a63f 100644 --- a/src/libstd/rt/mod.rs +++ b/src/libstd/rt/mod.rs @@ -32,7 +32,7 @@ truly a global resource and generally operates independently of the rest of the runtime. All other runtime features are task-local, including the local heap, -the garbage collector, local storage, logging and the stack unwinder. +local storage, logging and the stack unwinder. The relationship between `rt` and the rest of the core library is not entirely clear yet and some modules will be moving into or From a90c2b8e15b4b01eea9d49cc3c54c2b0a3a9e428 Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Thu, 16 Oct 2014 13:13:59 -0400 Subject: [PATCH 2/2] one more --- src/libstd/rt/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/libstd/rt/mod.rs b/src/libstd/rt/mod.rs index 661448079a63f..b6a020001b625 100644 --- a/src/libstd/rt/mod.rs +++ b/src/libstd/rt/mod.rs @@ -42,7 +42,6 @@ Several modules in `core` are clients of `rt`: * `std::task` - The user-facing interface to the Rust task model. * `std::local_data` - The interface to local data. -* `std::gc` - The garbage collector. * `std::unstable::lang` - Miscellaneous lang items, some of which rely on `std::rt`. * `std::cleanup` - Local heap destruction. * `std::io` - In the future `std::io` will use an `rt` implementation.