about summary refs log tree commit diff
path: root/src/rt/rust_task_thread.cpp
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-02-03 18:42:12 -0800
committerBrian Anderson <banderson@mozilla.com>2012-02-03 23:48:12 -0800
commit21d783c33844028d8baa0d4d022fc244fc3ba77b (patch)
tree0670af131df31fba91e16feb9c3f90f083692b3f /src/rt/rust_task_thread.cpp
parentf7a727e8613ac453db4e4aa2c4c00140c8a5ee3f (diff)
downloadrust-21d783c33844028d8baa0d4d022fc244fc3ba77b.tar.gz
rust-21d783c33844028d8baa0d4d022fc244fc3ba77b.zip
rt: Make isaac_init not a template
Diffstat (limited to 'src/rt/rust_task_thread.cpp')
-rw-r--r--src/rt/rust_task_thread.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rt/rust_task_thread.cpp b/src/rt/rust_task_thread.cpp
index d31575510e9..a3bf729ad2f 100644
--- a/src/rt/rust_task_thread.cpp
+++ b/src/rt/rust_task_thread.cpp
@@ -37,7 +37,7 @@ rust_task_thread::rust_task_thread(rust_scheduler *sched,
     should_exit(false)
 {
     LOGPTR(this, "new dom", (uintptr_t)this);
-    isaac_init(this, &rctx);
+    isaac_init(kernel, &rctx);
 #ifndef __WIN32__
     pthread_attr_init(&attr);
     pthread_attr_setstacksize(&attr, 1024 * 1024);