diff options
| author | Brian Anderson <banderson@mozilla.com> | 2012-02-08 17:46:12 -0800 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-02-09 19:00:15 -0800 |
| commit | d39ea4774614f1db3366184f1e6ce30b7614d9ff (patch) | |
| tree | 1eefada3636e780d131d194eac8093c137705195 /src/rt/rust_builtin.cpp | |
| parent | 1dad32c015b3eecf4e8f5dc4518eec2fd019def2 (diff) | |
| download | rust-d39ea4774614f1db3366184f1e6ce30b7614d9ff.tar.gz rust-d39ea4774614f1db3366184f1e6ce30b7614d9ff.zip | |
rt: Remove rust_task_user struct
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 9b02256041a..a3101e7edc9 100644 --- a/src/rt/rust_builtin.cpp +++ b/src/rt/rust_builtin.cpp @@ -439,7 +439,7 @@ rust_new_sched(uintptr_t threads) { extern "C" CDECL rust_task_id get_task_id() { rust_task *task = rust_task_thread::get_task(); - return task->user.id; + return task->id; } static rust_task_id |
