diff options
| author | Niko Matsakis <niko@alum.mit.edu> | 2012-04-13 17:52:36 -0700 |
|---|---|---|
| committer | Niko Matsakis <niko@alum.mit.edu> | 2012-04-19 20:34:26 -0700 |
| commit | 21f74be2c1180e01ef4985d36b91130d0838da37 (patch) | |
| tree | c062692bf32b2b87f50b01bf1a26dc480cc2e61e /src/rt/rust_log.cpp | |
| parent | 8be944e89ee7a54d05a256a9a11e3d0df7d7f7e9 (diff) | |
| download | rust-21f74be2c1180e01ef4985d36b91130d0838da37.tar.gz rust-21f74be2c1180e01ef4985d36b91130d0838da37.zip | |
add a new runtime log (::rt::box) and make boxed_region use it
Diffstat (limited to 'src/rt/rust_log.cpp')
| -rw-r--r-- | src/rt/rust_log.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/rt/rust_log.cpp b/src/rt/rust_log.cpp index df1ae6fd47f..29d35e27c21 100644 --- a/src/rt/rust_log.cpp +++ b/src/rt/rust_log.cpp @@ -236,6 +236,7 @@ void print_crate_log_map(const cratemap* map) { // These are pseudo-modules used to control logging in the runtime. uint32_t log_rt_mem; +uint32_t log_rt_box; uint32_t log_rt_comm; uint32_t log_rt_task; uint32_t log_rt_dom; @@ -251,6 +252,7 @@ uint32_t log_rt_callback; static const mod_entry _rt_module_map[] = {{"::rt::mem", &log_rt_mem}, + {"::rt::box", &log_rt_box}, {"::rt::comm", &log_rt_comm}, {"::rt::task", &log_rt_task}, {"::rt::dom", &log_rt_dom}, |
