Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
bools are not ints anymore
[simgrid.git] / src / kernel / context / Context.cpp
index 7e3ce08..385753e 100644 (file)
@@ -83,7 +83,7 @@ void Context::stop()
 {
   if (this->cleanup_func_)
     this->cleanup_func_(this->actor_);
-  this->actor_->suspended_ = 0;
+  this->actor_->suspended_ = false;
 
   this->iwannadie = false;
   simgrid::simix::simcall([this] { SIMIX_process_cleanup(this->actor_); });