Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[simix] Fix boost context compilation for HAVE_BOOST_CONTEXT != 1
authorGabriel Corona <gabriel.corona@loria.fr>
Tue, 15 Dec 2015 12:37:01 +0000 (13:37 +0100)
committerGabriel Corona <gabriel.corona@loria.fr>
Tue, 15 Dec 2015 12:38:40 +0000 (13:38 +0100)
src/simix/BoostContext.cpp

index b66da92..debd695 100644 (file)
@@ -191,7 +191,7 @@ void BoostContext::resume()
     (intptr_t) this);
 #else
   boost::context::jump_fcontext(
-    &boost_maestro_context_->fc_, this->fc_,
+    &maestro_context_->fc_, this->fc_,
     (intptr_t) this);
 #endif
 }