Commit 2cf8e67e authored by Sebastian Woelke's avatar Sebastian Woelke

Switch from LGS depth- to breadth-first strategie

parent 79084c06
...@@ -143,7 +143,7 @@ void scheduled_actor::enqueue(mailbox_element_ptr ptr, execution_unit* eu) { ...@@ -143,7 +143,7 @@ void scheduled_actor::enqueue(mailbox_element_ptr ptr, execution_unit* eu) {
eu->exec_later(this, true); // internal enqueue eu->exec_later(this, true); // internal enqueue
} else { } else {
// `eu` has a high memory distance to this actor // `eu` has a high memory distance to this actor
home_eu_->exec_later(this, false); // external enqueued home_eu_->exec_later(this, true); // external enqueued
} }
} else { } else {
// msg is received from non-actor or context or from a detached actor // msg is received from non-actor or context or from a detached actor
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment