From 00d1465d13980fc3acf650f182ee0723fbda0e06 Mon Sep 17 00:00:00 2001 From: Michael Bebenita Date: Mon, 19 Jul 2010 14:05:18 -0700 Subject: 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. --- src/boot/be/abi.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/boot') 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;; -- cgit v1.2.3