'progress (internal)' advances the state of future

Issue #88 resolved
Nenad Vukicevic created an issue

The following code

  future<intrank_t> fut = rpc(nebr, []() { return myrank; });
  while (!fut.ready())
    progress (progress_level::internal);

eventually completes. I understand that it should hang in the loop as progress(user) was never called.

Comments (4)

  1. Log in to comment