From: Gabriel Corona Date: Tue, 15 Dec 2015 12:37:01 +0000 (+0100) Subject: [simix] Fix boost context compilation for HAVE_BOOST_CONTEXT != 1 X-Git-Tag: v3_13~1447 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/41c7004ba8a681e8409d669852862f50c0d82cbb [simix] Fix boost context compilation for HAVE_BOOST_CONTEXT != 1 --- diff --git a/src/simix/BoostContext.cpp b/src/simix/BoostContext.cpp index b66da92761..debd695383 100644 --- a/src/simix/BoostContext.cpp +++ b/src/simix/BoostContext.cpp @@ -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 }