Commit 513306eb authored by Dominik Charousset's avatar Dominik Charousset

Remove debug output

parent a1e64089
......@@ -97,13 +97,11 @@ size_t pongs() {
}
void event_based_ping(event_based_actor* self, size_t ping_msgs) {
printf("event_based_ping\n");
s_pongs = 0;
self->become(ping_behavior(self, ping_msgs));
}
void pong(blocking_actor* self, actor ping_actor) {
printf("event_based_pong\n");
self->send(ping_actor, pong_atom::value, 0); // kickoff
self->receive_loop(pong_behavior(self));
}
......
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