Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Replaced:
authorhenricasanova <henric@hawaii.edu>
Tue, 4 Jul 2017 09:15:58 +0000 (11:15 +0200)
committerhenricasanova <henric@hawaii.edu>
Tue, 4 Jul 2017 09:15:58 +0000 (11:15 +0200)
commit76a1aca27f2d297e488b055f400847f91b8f8559
treeeb3c06ebb6602325272bcdddc9b099da314dc2d6
parent1fb2f54c35266af4042c56102ec1ad27e2cab321
Replaced:

if (state_ == finished)
    xbt_die("Don't call test on a finished comm.");

by:

if (state_ == finished)
    return true;

Since testing a finished comm should be a feature, not a bug
src/s4u/s4u_comm.cpp