X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d20f024dba9ff1e9c8822237caaf963b9e913889..abbc693cf5fa54668854a699f4a285294de01c30:/src/simix/smx_private.hpp diff --git a/src/simix/smx_private.hpp b/src/simix/smx_private.hpp index a14ab8bfd1..1a2ba34e78 100644 --- a/src/simix/smx_private.hpp +++ b/src/simix/smx_private.hpp @@ -66,10 +66,10 @@ XBT_PUBLIC_DATA(std::unique_ptr) simix_global; XBT_PUBLIC(void) SIMIX_clean(); /******************************** Exceptions *********************************/ -/** @brief Ask to the provided simix process to raise the provided exception */ +/** @brief Ask to the provided ActorImpl to raise the provided exception */ #define SMX_EXCEPTION(issuer, cat, val, msg) \ if (1) { \ - smx_actor_t _smx_throw_issuer = (issuer); /* evaluate only once */ \ + simgrid::simix::ActorImpl* _smx_throw_issuer = (issuer); /* evaluate only once */ \ xbt_ex e(XBT_THROW_POINT, msg); \ e.category = cat; \ e.value = val; \