diff options
| author | Michael Bebenita <[email protected]> | 2010-07-19 14:05:18 -0700 |
|---|---|---|
| committer | Michael Bebenita <[email protected]> | 2010-07-19 14:05:18 -0700 |
| commit | 00d1465d13980fc3acf650f182ee0723fbda0e06 (patch) | |
| tree | a73cf5f0f20c0bee6722b33d975eb930919fefdf /src/boot | |
| parent | Add a test for an obvious-seeming (but not actually legal) kind of cast attem... (diff) | |
| download | rust-00d1465d13980fc3acf650f182ee0723fbda0e06.tar.xz rust-00d1465d13980fc3acf650f182ee0723fbda0e06.zip | |
Added a message passing system based on lock free queues for inter-thread communication. Channels now buffer on the sending side, and no longer require blocking when sending. Lots of other refactoring and bug fixes.
Diffstat (limited to 'src/boot')
| -rw-r--r-- | src/boot/be/abi.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot/be/abi.ml b/src/boot/be/abi.ml index c3e72293..e4bb3c9c 100644 --- a/src/boot/be/abi.ml +++ b/src/boot/be/abi.ml @@ -13,7 +13,7 @@ let rc_base_field_refcnt = 0;; let task_field_refcnt = rc_base_field_refcnt;; -let task_field_stk = task_field_refcnt + 1;; +let task_field_stk = task_field_refcnt + 2;; let task_field_runtime_sp = task_field_stk + 1;; let task_field_rust_sp = task_field_runtime_sp + 1;; let task_field_gc_alloc_chain = task_field_rust_sp + 1;; |