From: Arnaud Giersch Date: Wed, 12 Mar 2014 13:49:32 +0000 (+0100) Subject: Factorize stack creation. X-Git-Tag: v3_11~105^2~2 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/5880a1bbbf150def1664cfefd6ec7f36f56edfaa?hp=aa8449846e88754c91efc3a3a5fe8d64a0e48d0e Factorize stack creation. --- diff --git a/src/simix/smx_context.c b/src/simix/smx_context.c index 3a5a066acc..12552da99c 100644 --- a/src/simix/smx_context.c +++ b/src/simix/smx_context.c @@ -99,6 +99,16 @@ void SIMIX_context_mod_exit(void) xbt_dict_remove((xbt_dict_t) _sg_cfg_set,"contexts/factory"); } +void *SIMIX_context_stack_new(void) +{ + return xbt_malloc0(smx_context_stack_size); +} + +void SIMIX_context_stack_delete(void *stack) +{ + xbt_free(stack); +} + /** * \brief Returns whether some parallel threads are used * for the user contexts. diff --git a/src/simix/smx_context_raw.c b/src/simix/smx_context_raw.c index d475f6be53..df733cda81 100644 --- a/src/simix/smx_context_raw.c +++ b/src/simix/smx_context_raw.c @@ -316,7 +316,7 @@ smx_ctx_raw_create_context(xbt_main_func_t code, int argc, char **argv, /* if the user provided a function for the process then use it, otherwise it is the context for maestro */ if (code) { - context->malloced_stack = xbt_malloc0(smx_context_stack_size); + context->malloced_stack = SIMIX_context_stack_new(); context->stack_top = raw_makecontext(context->malloced_stack, smx_context_stack_size, (void_f_pvoid_t) smx_ctx_raw_wrapper, context); @@ -352,7 +352,8 @@ static void smx_ctx_raw_free(smx_context_t context) context)->valgrind_stack_id); #endif /* HAVE_VALGRIND_VALGRIND_H */ - free(((smx_ctx_raw_t) context)->malloced_stack); + SIMIX_context_stack_delete(((smx_ctx_raw_t) context)->malloced_stack); + } smx_ctx_base_free(context); } diff --git a/src/simix/smx_context_sysv.c b/src/simix/smx_context_sysv.c index b1906cc105..7b5e2921d3 100644 --- a/src/simix/smx_context_sysv.c +++ b/src/simix/smx_context_sysv.c @@ -32,7 +32,7 @@ typedef struct s_smx_ctx_sysv { #ifdef HAVE_VALGRIND_VALGRIND_H unsigned int valgrind_stack_id; /* the valgrind stack id */ #endif - char stack[0]; /* the thread stack (must remain the last element of the structure) */ + char *stack; /* the thread stack */ } s_smx_ctx_sysv_t, *smx_ctx_sysv_t; #ifdef CONTEXT_THREADS @@ -135,6 +135,7 @@ smx_ctx_sysv_create_context_sized(size_t size, xbt_main_func_t code, otherwise it is the context for maestro */ if (code) { + context->stack = SIMIX_context_stack_new(); getcontext(&(context->uc)); context->uc.uc_link = NULL; @@ -183,8 +184,7 @@ smx_ctx_sysv_create_context(xbt_main_func_t code, int argc, char **argv, smx_process_t process) { - return smx_ctx_sysv_create_context_sized(sizeof(s_smx_ctx_sysv_t) + - smx_context_stack_size, + return smx_ctx_sysv_create_context_sized(sizeof(s_smx_ctx_sysv_t), code, argc, argv, cleanup_func, process); @@ -199,7 +199,7 @@ static void smx_ctx_sysv_free(smx_context_t context) VALGRIND_STACK_DEREGISTER(((smx_ctx_sysv_t) context)->valgrind_stack_id); #endif /* HAVE_VALGRIND_VALGRIND_H */ - + SIMIX_context_stack_delete(((smx_ctx_sysv_t)context)->stack); } smx_ctx_base_free(context); } diff --git a/src/simix/smx_private.h b/src/simix/smx_private.h index 5c1cf64d18..87a76e4379 100644 --- a/src/simix/smx_private.h +++ b/src/simix/smx_private.h @@ -201,6 +201,9 @@ typedef struct s_smx_action { void SIMIX_context_mod_init(void); void SIMIX_context_mod_exit(void); +void *SIMIX_context_stack_new(void); +void SIMIX_context_stack_delete(void *stack); + void SIMIX_context_set_current(smx_context_t context); smx_context_t SIMIX_context_get_current(void);