diff options
| author | Brian Anderson <banderson@mozilla.com> | 2012-02-03 15:18:58 -0800 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-02-03 23:48:12 -0800 |
| commit | 3d0e7a7af3eeee433dd942bca01e085d7d5866a7 (patch) | |
| tree | 336be29bd2a6ee29be28bdd2e530d3225a2c249e /src/rt/rust_builtin.cpp | |
| parent | 8d881967a2be96a38df3b4d70337568c3f3562b7 (diff) | |
| download | rust-3d0e7a7af3eeee433dd942bca01e085d7d5866a7.tar.gz rust-3d0e7a7af3eeee433dd942bca01e085d7d5866a7.zip | |
rt: Add a field to rust_task to hold its scheduler
Diffstat (limited to 'src/rt/rust_builtin.cpp')
| -rw-r--r-- | src/rt/rust_builtin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rt/rust_builtin.cpp b/src/rt/rust_builtin.cpp index 8ac85c4ece7..bcc3e944711 100644 --- a/src/rt/rust_builtin.cpp +++ b/src/rt/rust_builtin.cpp @@ -417,7 +417,7 @@ start_task(rust_task_id id, fn_env_pair *f) { extern "C" CDECL int sched_threads() { rust_task *task = rust_task_thread::get_task(); - return task->thread->sched->number_of_threads(); + return task->sched->number_of_threads(); } extern "C" CDECL rust_port* |
