From: Arnaud Giersch Date: Thu, 13 Mar 2014 08:51:04 +0000 (+0100) Subject: Remove useless function: smx_ctx_sysv_create_context_sized X-Git-Tag: v3_11~218^2~2 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/c4867f73c97be8b270d5b47f27daf9c00ed9b07e Remove useless function: smx_ctx_sysv_create_context_sized --- diff --git a/src/simix/smx_context_sysv.c b/src/simix/smx_context_sysv.c index 7b5e2921d3..18822c5545 100644 --- a/src/simix/smx_context_sysv.c +++ b/src/simix/smx_context_sysv.c @@ -117,19 +117,19 @@ static int smx_ctx_sysv_factory_finalize(smx_context_factory_t *factory) } static smx_context_t -smx_ctx_sysv_create_context_sized(size_t size, xbt_main_func_t code, - int argc, char **argv, - void_pfn_smxprocess_t cleanup_func, - smx_process_t process) +smx_ctx_sysv_create_context(xbt_main_func_t code, int argc, char **argv, + void_pfn_smxprocess_t cleanup_func, + smx_process_t process) { int ctx_addr[CTX_ADDR_LEN]; smx_ctx_sysv_t context = - (smx_ctx_sysv_t) smx_ctx_base_factory_create_context_sized(size, - code, - argc, - argv, - cleanup_func, - process); + (smx_ctx_sysv_t) smx_ctx_base_factory_create_context_sized( + sizeof(s_smx_ctx_sysv_t), + code, + argc, + argv, + cleanup_func, + process); /* if the user provided a function for the process then use it, otherwise it is the context for maestro */ @@ -173,23 +173,11 @@ smx_ctx_sysv_create_context_sized(size_t size, xbt_main_func_t code, if(MC_is_active() && code) MC_new_stack_area(context, ((smx_context_t)context)->process->name, - &(context->uc), size); + &(context->uc), sizeof(s_smx_ctx_sysv_t)); return (smx_context_t) context; } -static smx_context_t -smx_ctx_sysv_create_context(xbt_main_func_t code, int argc, char **argv, - void_pfn_smxprocess_t cleanup_func, - smx_process_t process) -{ - - return smx_ctx_sysv_create_context_sized(sizeof(s_smx_ctx_sysv_t), - code, argc, argv, cleanup_func, - process); - -} - static void smx_ctx_sysv_free(smx_context_t context) {