X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d7a342ebdb564e43f7d192eb49402e2d96ac8a46..e816186fdeaf53fa5abf6886f157c499e09c4622:/src/kernel/context/ContextThread.cpp diff --git a/src/kernel/context/ContextThread.cpp b/src/kernel/context/ContextThread.cpp index ab202159bd..d22c7aa318 100644 --- a/src/kernel/context/ContextThread.cpp +++ b/src/kernel/context/ContextThread.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2009-2018. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2009-2019. 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. */ @@ -63,34 +63,28 @@ ThreadContext::ThreadContext(std::function code, void_pfn_smxprocess_t c { /* If the user provided a function for the process then use it */ if (has_code()) { - if (smx_context_stack_size_was_set) - xbt_os_thread_setstacksize(smx_context_stack_size); - if (smx_context_guard_size_was_set) - xbt_os_thread_setguardsize(smx_context_guard_size); - /* create and start the process */ - /* NOTE: The first argument to xbt_os_thread_create used to be the process * - * name, but now the name is stored at SIMIX level, so we pass a null */ - this->thread_ = xbt_os_thread_create(nullptr, ThreadContext::wrapper, this, this); + this->thread_ = new std::thread(ThreadContext::wrapper, this); /* wait the starting of the newly created process */ this->end_.acquire(); } /* Otherwise, we attach to the current thread */ else { - xbt_os_thread_set_extra_data(this); + Context::set_current(this); } } ThreadContext::~ThreadContext() { if (this->thread_) /* If there is a thread (maestro don't have any), wait for its termination */ - xbt_os_thread_join(this->thread_, nullptr); + thread_->join(); } void *ThreadContext::wrapper(void *param) { ThreadContext* context = static_cast(param); + Context::set_current(context); #ifndef WIN32 /* Install alternate signal stack, for SIGSEGV handler. */ @@ -177,7 +171,7 @@ void ThreadContext::attach_stop() ThreadContext* maestro = (ThreadContext*)simix_global->maestro_process->context_; maestro->end_.acquire(); - xbt_os_thread_set_extra_data(nullptr); + Context::set_current(nullptr); } // SerialThreadContext