X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6778416c2ce4535d1542c59429af4fa4b3ede90b..03ce6a2e7863fe994d12ca8ab9141b4f6fdb5f8e:/src/kernel/context/ContextRaw.cpp diff --git a/src/kernel/context/ContextRaw.cpp b/src/kernel/context/ContextRaw.cpp index 09d0c3ebc2..423f13dc0f 100644 --- a/src/kernel/context/ContextRaw.cpp +++ b/src/kernel/context/ContextRaw.cpp @@ -6,6 +6,7 @@ #include "ContextRaw.hpp" #include "context_private.hpp" #include "mc/mc.h" +#include "simgrid/Exception.hpp" #include "src/simix/smx_private.hpp" XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(simix_context); @@ -261,10 +262,14 @@ void RawContext::wrapper(void* arg) ASAN_FINISH_SWITCH(nullptr, &context->asan_ctx_->asan_stack_, &context->asan_ctx_->asan_stack_size_); try { (*context)(); - context->Context::stop(); } catch (StopRequest const&) { XBT_DEBUG("Caught a StopRequest"); + } catch (simgrid::Exception const& e) { + XBT_INFO("Actor killed by an uncatched exception %s", simgrid::xbt::demangle(typeid(e).name()).get()); + throw; } + context->Context::stop(); + ASAN_ONLY(context->asan_stop_ = true); context->suspend(); } @@ -328,7 +333,7 @@ void SerialRawContext::run_all() simgrid::xbt::Parmap* ParallelRawContext::parmap_; std::atomic ParallelRawContext::threads_working_; /* number of threads that have started their work */ -xbt_os_thread_key_t ParallelRawContext::worker_id_key_; /* thread-specific storage for the thread id */ +uintptr_t thread_local ParallelRawContext::worker_id_; /* thread-specific storage for the thread id */ std::vector ParallelRawContext::workers_context_; /* space to save the worker context in each thread */ @@ -337,7 +342,6 @@ void ParallelRawContext::initialize() parmap_ = nullptr; workers_context_.clear(); workers_context_.resize(SIMIX_context_get_nthreads(), nullptr); - xbt_os_thread_key_create(&worker_id_key_); } void ParallelRawContext::finalize() @@ -345,7 +349,6 @@ void ParallelRawContext::finalize() delete parmap_; parmap_ = nullptr; workers_context_.clear(); - xbt_os_thread_key_destroy(worker_id_key_); } void ParallelRawContext::run_all() @@ -373,9 +376,8 @@ void ParallelRawContext::suspend() } else { /* all processes were run, go to the barrier */ XBT_DEBUG("No more processes to run"); - uintptr_t worker_id = reinterpret_cast(xbt_os_thread_get_specific(worker_id_key_)); - next_context = workers_context_[worker_id]; - XBT_DEBUG("Restoring worker stack %zu (working threads = %zu)", worker_id, threads_working_.load()); + next_context = workers_context_[worker_id_]; + XBT_DEBUG("Restoring worker stack %zu (working threads = %zu)", worker_id_, threads_working_.load()); } SIMIX_context_set_current(next_context); @@ -384,11 +386,10 @@ void ParallelRawContext::suspend() void ParallelRawContext::resume() { - uintptr_t worker_id = threads_working_.fetch_add(1, std::memory_order_relaxed); - xbt_os_thread_set_specific(worker_id_key_, reinterpret_cast(worker_id)); + worker_id_ = threads_working_.fetch_add(1, std::memory_order_relaxed); ParallelRawContext* worker_context = static_cast(SIMIX_context_self()); - workers_context_[worker_id] = worker_context; - XBT_DEBUG("Saving worker stack %zu", worker_id); + workers_context_[worker_id_] = worker_context; + XBT_DEBUG("Saving worker stack %zu", worker_id_); SIMIX_context_set_current(this); RawContext::swap(worker_context, this); }