about summary refs log tree commit diff
path: root/src/rt/rust_kernel.h
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2013-01-19 23:38:17 -0800
committerBrian Anderson <banderson@mozilla.com>2013-01-23 17:35:34 -0800
commitb9608fe4232c4014daa540849d471b1791b41fa6 (patch)
tree10bd75fb21036ba97b406550c4c21ebe526ae2d5 /src/rt/rust_kernel.h
parentfb9299346af9b951890db80e47eb65625997f160 (diff)
downloadrust-b9608fe4232c4014daa540849d471b1791b41fa6.tar.gz
rust-b9608fe4232c4014daa540849d471b1791b41fa6.zip
std: Convert uv_global_loop to use pipes
Diffstat (limited to 'src/rt/rust_kernel.h')
-rw-r--r--src/rt/rust_kernel.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/rt/rust_kernel.h b/src/rt/rust_kernel.h
index 477e59d1b3e..8ba0405b86e 100644
--- a/src/rt/rust_kernel.h
+++ b/src/rt/rust_kernel.h
@@ -129,9 +129,6 @@ class rust_kernel {
     void end_weak_tasks();
     void begin_shutdown();
 
-    // Used to communicate with the process-side, global libuv loop
-    uintptr_t global_loop_chan;
-
     lock_and_signal at_exit_lock;
     spawn_fn at_exit_runner;
     bool at_exit_started;
@@ -190,8 +187,6 @@ public:
 
     bool send_to_port(rust_port_id chan, void *sptr);
 
-    uintptr_t* get_global_loop() { return &global_loop_chan; }
-
     void register_exit_function(spawn_fn runner, fn_env_pair *f);
 };