diff options
| author | Brian Anderson <banderson@mozilla.com> | 2013-01-21 19:16:01 -0800 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2013-01-23 17:35:34 -0800 |
| commit | a3e087cefacb1b92476543fe7d6ef68f0ca82dd8 (patch) | |
| tree | b96921cefa429e1f59881fff78c0c6550e5a4755 /src/libstd | |
| parent | b9608fe4232c4014daa540849d471b1791b41fa6 (diff) | |
core: Remove private::chan_from_global_ptr. #3915
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/uv_global_loop.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/uv_global_loop.rs b/src/libstd/uv_global_loop.rs index 097e923225a..c99bcaa54fa 100644 --- a/src/libstd/uv_global_loop.rs +++ b/src/libstd/uv_global_loop.rs @@ -75,10 +75,10 @@ fn get_monitor_task_gl() -> IoTask unsafe { debug!("global monitor task starting"); // As a weak task the runtime will notify us when to exit do weaken_task |weak_exit_po| { - debug!("global monitor task is now weak"); + debug!("global monitor task is weak"); weak_exit_po.recv(); iotask::exit(&iotask); - debug!("global monitor task is leaving weakend state"); + debug!("global monitor task is unweak"); }; debug!("global monitor task exiting"); } |
