diff options
| author | Brian Anderson <banderson@mozilla.com> | 2012-02-03 18:42:12 -0800 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-02-03 23:48:12 -0800 |
| commit | 21d783c33844028d8baa0d4d022fc244fc3ba77b (patch) | |
| tree | 0670af131df31fba91e16feb9c3f90f083692b3f /src/rt/rust_task_thread.cpp | |
| parent | f7a727e8613ac453db4e4aa2c4c00140c8a5ee3f (diff) | |
| download | rust-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.cpp | 2 |
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); |
