X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7f9bfecfa8f78da52f5451934dcd209acfa94787..f9b13d923d31bb0336aeeaab6d5b7ba33812f3f7:/src/kernel/context/ContextUnix.cpp diff --git a/src/kernel/context/ContextUnix.cpp b/src/kernel/context/ContextUnix.cpp index 28a62b9a3a..e38df56c39 100644 --- a/src/kernel/context/ContextUnix.cpp +++ b/src/kernel/context/ContextUnix.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2009-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2009-2022. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -9,11 +9,10 @@ #include "simgrid/Exception.hpp" #include "src/kernel/actor/ActorImpl.hpp" #include "src/mc/mc_ignore.hpp" -#include "src/simix/smx_private.hpp" #include "ContextUnix.hpp" -XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(simix_context); +XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(ker_context); /** Up to two integers may be needed to store a pointer on the system we target */ constexpr int CTX_ADDR_LEN = 2; @@ -61,12 +60,12 @@ UContext::UContext(std::function&& code, actor::ActorImpl* actor, Swappe int ctx_addr[CTX_ADDR_LEN]{}; UContext* arg = this; - memcpy(ctx_addr, &arg, sizeof this); + memcpy(ctx_addr, &arg, sizeof arg); makecontext(&this->uc_, (void (*)())sysv_ctx_wrapper, 2, ctx_addr[0], ctx_addr[1]); #if SIMGRID_HAVE_MC if (MC_is_active()) { - MC_register_stack_area(get_stack(), &(this->uc_), smx_context_stack_size); + MC_register_stack_area(get_stack(), &(this->uc_), stack_size); } #endif }