diff options
| author | Michael Bebenita <[email protected]> | 2010-09-07 18:39:07 -0700 |
|---|---|---|
| committer | Michael Bebenita <[email protected]> | 2010-09-07 18:44:12 -0700 |
| commit | de611a309006f0976bc9a579eb1087e7a89f79a7 (patch) | |
| tree | cd30b33ab1986c0cc84e0fc0743593bd99b0caaa /src/boot | |
| parent | Started work on a framework for writing runtime tests, added some simple test... (diff) | |
| download | rust-de611a309006f0976bc9a579eb1087e7a89f79a7.tar.xz rust-de611a309006f0976bc9a579eb1087e7a89f79a7.zip | |
Lots of design changes around proxies and message passing. Made it so that domains can only talk to other domains via handles, and with the help of the rust_kernel.
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 b58f9125..43043e11 100644 --- a/src/boot/be/abi.ml +++ b/src/boot/be/abi.ml @@ -20,7 +20,7 @@ let task_field_gc_alloc_chain = task_field_rust_sp + 1;; let task_field_dom = task_field_gc_alloc_chain + 1;; let n_visible_task_fields = task_field_dom + 1;; -let dom_field_interrupt_flag = 0;; +let dom_field_interrupt_flag = 1;; let frame_glue_fns_field_mark = 0;; let frame_glue_fns_field_drop = 1;; |