Commit 84413e73 authored by Dominik Charousset's avatar Dominik Charousset

implemented new work-stealing scheduler

parent 1e1d9704
......@@ -118,7 +118,7 @@ class actor_facade<Ret(Args...)> : public abstract_actor {
};
}
void enqueue(const message_header& hdr, any_tuple msg) override {
void enqueue(msg_hdr_cref hdr, any_tuple msg, execution_unit*) override {
CPPA_LOG_TRACE("");
typename util::il_indices<util::type_list<Args...>>::type indices;
enqueue_impl(hdr.sender, std::move(msg), hdr.id, indices);
......
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