From 9a5d1974dc5114d6990db47cfd1d1edaabe01ce8 Mon Sep 17 00:00:00 2001 From: Jeff Olson Date: Mon, 16 Apr 2012 22:39:17 -0700 Subject: don't use ::malloc for initializing the global_async_handle in rust_kernel --- src/rt/rust_kernel.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/rt/rust_kernel.cpp') diff --git a/src/rt/rust_kernel.cpp b/src/rt/rust_kernel.cpp index adc62053345..1ff6fad64ab 100644 --- a/src/rt/rust_kernel.cpp +++ b/src/rt/rust_kernel.cpp @@ -27,8 +27,9 @@ rust_kernel::rust_kernel(rust_env *env) : // set up storage of pointers needed to // access the global loop. global_loop_chan = 0; - global_async_handle = (void**)::malloc( // FIXME--can't use this->malloc() - sizeof(void*)); // .. what do? + int foo = 0; + async_handle_stub = (void*)&foo; + global_async_handle = &async_handle_stub; *global_async_handle = (void*)0; // Create the single threaded scheduler that will run on the platform's -- cgit 1.4.1-3-g733a5