X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/45d00a93682182156762f2ca97b1f2746746c8b1..38e2adf74c9fccec6487e953bcb6895b72786dc1:/src/simix/UContext.cpp diff --git a/src/simix/UContext.cpp b/src/simix/UContext.cpp index 6d583168d0..8852c73597 100644 --- a/src/simix/UContext.cpp +++ b/src/simix/UContext.cpp @@ -9,20 +9,14 @@ #include #include +#include /* context relative declarations */ #include "xbt/parmap.h" #include "src/simix/smx_private.h" #include "src/simix/smx_private.hpp" #include "src/internal_config.h" -#include "src/context_sysv_config.h" /* loads context system definitions */ #include "mc/mc.h" -#ifdef _XBT_WIN32 -# include /* context relative declarations */ -#else -# include /* context relative declarations */ -#endif - /** Many integers are needed to store a pointer * * This is a bit paranoid about sizeof(smx_ctx_sysv_t) not being a multiple @@ -36,8 +30,7 @@ * Makecontext expects integer arguments, we the context * variable is decomposed into a serie of integers and * each integer is passed as argument to makecontext. */ -static -void simgrid_makecontext(ucontext_t* ucp, void (*func)(int first, ...), void* arg) +static void simgrid_makecontext(ucontext_t* ucp, void (*func)(int first, ...), void* arg) { int ctx_addr[CTX_ADDR_LEN]; memcpy(ctx_addr, &arg, sizeof(void*)); @@ -49,8 +42,7 @@ void simgrid_makecontext(ucontext_t* ucp, void (*func)(int first, ...), void* ar makecontext(ucp, (void (*)()) func, 2, ctx_addr[0], ctx_addr[1]); break; default: - xbt_die("Ucontexts are not supported on this arch yet (addr len = %zu/%zu = %zu)", - sizeof(void*), sizeof(int), CTX_ADDR_LEN); + xbt_die("Ucontexts are not supported on this arch yet (addr len = %zu/%zu = %zu)", sizeof(void*), sizeof(int), CTX_ADDR_LEN); } } @@ -65,7 +57,7 @@ namespace simix { } } -#ifdef HAVE_THREAD_CONTEXTS +#if HAVE_THREAD_CONTEXTS static xbt_parmap_t sysv_parmap; static simgrid::simix::ParallelUContext** sysv_workers_context; /* space to save the worker's context in each thread */ static uintptr_t sysv_threads_working; /* number of threads that have started their work */ @@ -139,7 +131,7 @@ UContextFactory::UContextFactory() : ContextFactory("UContextFactory") { if (SIMIX_context_is_parallel()) { sysv_parallel = true; -#ifdef HAVE_THREAD_CONTEXTS /* To use parallel ucontexts a thread pool is needed */ +#if HAVE_THREAD_CONTEXTS /* To use parallel ucontexts a thread pool is needed */ int nthreads = SIMIX_context_get_nthreads(); sysv_parmap = nullptr; sysv_workers_context = xbt_new(ParallelUContext*, nthreads); @@ -155,7 +147,7 @@ UContextFactory::UContextFactory() : ContextFactory("UContextFactory") UContextFactory::~UContextFactory() { -#ifdef HAVE_THREAD_CONTEXTS +#if HAVE_THREAD_CONTEXTS if (sysv_parmap) xbt_parmap_destroy(sysv_parmap); xbt_free(sysv_workers_context); @@ -169,7 +161,7 @@ UContextFactory::~UContextFactory() void UContextFactory::run_all() { if (sysv_parallel) { - #ifdef HAVE_THREAD_CONTEXTS + #if HAVE_THREAD_CONTEXTS sysv_threads_working = 0; // Parmap_apply ensures that every working thread get an index in the // process_to_run array (through an atomic fetch_and_add), @@ -216,23 +208,20 @@ UContext::UContext(std::function code, void_pfn_smxprocess_t cleanup_func, smx_process_t process) : Context(std::move(code), cleanup_func, process) { - /* if the user provided a function for the process then use it, - otherwise it is the context for maestro */ + /* if the user provided a function for the process then use it, otherwise it is the context for maestro */ if (has_code()) { this->stack_ = (char*) SIMIX_context_stack_new(); getcontext(&this->uc_); this->uc_.uc_link = nullptr; - this->uc_.uc_stack.ss_sp = pth_skaddr_makecontext( - this->stack_, smx_context_usable_stack_size); - this->uc_.uc_stack.ss_size = pth_sksize_makecontext( - this->stack_, smx_context_usable_stack_size); + this->uc_.uc_stack.ss_sp = sg_makecontext_stack_addr(this->stack_); + this->uc_.uc_stack.ss_size = sg_makecontext_stack_size(smx_context_usable_stack_size); simgrid_makecontext(&this->uc_, smx_ctx_sysv_wrapper, this); } else { if (process != NULL && sysv_maestro_context == NULL) sysv_maestro_context = this; } -#ifdef HAVE_MC +#if HAVE_MC if (MC_is_active() && has_code()) { MC_register_stack_area(this->stack_, process, &(this->uc_), smx_context_usable_stack_size); @@ -314,7 +303,7 @@ void ParallelUContext::stop() /** Run one particular simulated process on the current thread. */ void ParallelUContext::resume() { -#ifdef HAVE_THREAD_CONTEXTS +#if HAVE_THREAD_CONTEXTS // What is my containing body? uintptr_t worker_id = __sync_fetch_and_add(&sysv_threads_working, 1); // Store the number of my containing body in os-thread-specific area : @@ -355,7 +344,7 @@ void ParallelUContext::resume() */ void ParallelUContext::suspend() { -#ifdef HAVE_THREAD_CONTEXTS +#if HAVE_THREAD_CONTEXTS /* determine the next context */ // Get the next soul to embody now: smx_process_t next_work = (smx_process_t) xbt_parmap_next(sysv_parmap);