Get rid of rust_crate_cache in the runtime

We are no longer generating dynamic tydescs or dicts.

Issue #1982
This commit is contained in:
Marijn Haverbeke
2012-03-15 17:28:14 +01:00
parent bc21a5ddbe
commit 146b61189a
10 changed files with 0 additions and 233 deletions

View File

@@ -24,7 +24,6 @@ rust_task_thread::rust_task_thread(rust_scheduler *sched,
int id) :
rust_thread(SCHED_STACK_SIZE),
_log(srv, this),
cache(this),
id(id),
should_exit(false),
cached_c_stack(NULL),
@@ -295,11 +294,6 @@ rust_task_thread::start_main_loop() {
}
}
rust_crate_cache *
rust_task_thread::get_cache() {
return &cache;
}
rust_task *
rust_task_thread::create_task(rust_task *spawner, const char *name,
size_t init_stack_sz) {