about summary refs log tree commit diff
path: root/src/rt/rust_kernel.h
diff options
context:
space:
mode:
authorJeff Olson <olson.jeffery@gmail.com>2012-04-27 21:39:45 -0700
committerJeff Olson <olson.jeffery@gmail.com>2012-04-27 22:19:30 -0700
commit577b888e4b87437a37903abb5b70b113a9df059d (patch)
tree0fda8aaee992d04b8f4954b1f025d680b4389186 /src/rt/rust_kernel.h
parent474e7e5e0d863d803ce20063069130a3c2e1f208 (diff)
downloadrust-577b888e4b87437a37903abb5b70b113a9df059d.tar.gz
rust-577b888e4b87437a37903abb5b70b113a9df059d.zip
rt: remove unneccesary c++ functions and rust_kernel data, re: global loop
Diffstat (limited to 'src/rt/rust_kernel.h')
-rw-r--r--src/rt/rust_kernel.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/rt/rust_kernel.h b/src/rt/rust_kernel.h
index 58739b2ada0..3f313f614a6 100644
--- a/src/rt/rust_kernel.h
+++ b/src/rt/rust_kernel.h
@@ -75,8 +75,6 @@ class rust_kernel {
 
     // Used to communicate with the process-side, global libuv loop
     uintptr_t global_loop_chan;
-    uintptr_t async_handle_inner;
-    uintptr_t* global_async_handle;
 
 public:
     struct rust_env *env;
@@ -124,7 +122,6 @@ public:
     bool send_to_port(rust_port_id chan, void *sptr);
 
     uintptr_t* get_global_loop() { return &global_loop_chan; }
-    uintptr_t* get_global_async_handle() { return global_async_handle; }
 };
 
 template <typename T> struct kernel_owned {