diff options
| author | Eric Holk <eholk@mozilla.com> | 2011-06-15 18:16:17 -0700 |
|---|---|---|
| committer | Eric Holk <eholk@mozilla.com> | 2011-06-15 18:16:59 -0700 |
| commit | 67360ae61808453d308496f90e0b3faa3e8efee3 (patch) | |
| tree | 7df5f198272c57aeebf35e9a22aa03cd12f33e0b /src/rt/rust_task.h | |
| parent | c4f9bd94700188678893659580f3b7aa80da3b7d (diff) | |
| download | rust-67360ae61808453d308496f90e0b3faa3e8efee3.tar.gz rust-67360ae61808453d308496f90e0b3faa3e8efee3.zip | |
Fixed a problem where spawn arguments were getting lost again. Also, fixed up stack alignment, which closes #496
Diffstat (limited to 'src/rt/rust_task.h')
| -rw-r--r-- | src/rt/rust_task.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/rt/rust_task.h b/src/rt/rust_task.h index 82792c1e1e5..a022a348667 100644 --- a/src/rt/rust_task.h +++ b/src/rt/rust_task.h @@ -60,8 +60,7 @@ rust_task : public maybe_proxy<rust_task>, ~rust_task(); void start(uintptr_t spawnee_fn, - uintptr_t args, - size_t callsz); + uintptr_t args); void grow(size_t n_frame_bytes); bool running(); bool blocked(); |
