diff options
| author | Jeff Olson <olson.jeffery@gmail.com> | 2012-04-16 22:39:17 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-04-20 15:23:22 -0700 |
| commit | 9a5d1974dc5114d6990db47cfd1d1edaabe01ce8 (patch) | |
| tree | cfc74999e34d73d583689b3d4eda55a021c61f42 /src/rt/rust_kernel.h | |
| parent | f21d25b54c4a721b609a0dbb51ec360f4e4cbcc9 (diff) | |
| download | rust-9a5d1974dc5114d6990db47cfd1d1edaabe01ce8.tar.gz rust-9a5d1974dc5114d6990db47cfd1d1edaabe01ce8.zip | |
don't use ::malloc for initializing the global_async_handle in rust_kernel
Diffstat (limited to 'src/rt/rust_kernel.h')
| -rw-r--r-- | src/rt/rust_kernel.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rt/rust_kernel.h b/src/rt/rust_kernel.h index 2309f4e6c1a..b77f9850bef 100644 --- a/src/rt/rust_kernel.h +++ b/src/rt/rust_kernel.h @@ -75,6 +75,7 @@ class rust_kernel { // Used to communicate with the process-side, global libuv loop uintptr_t global_loop_chan; + void* async_handle_stub; void** global_async_handle; public: |
