From 2aeae90fc3ac7059522d23c855dc0d4522d080a2 Mon Sep 17 00:00:00 2001 From: mquinson Date: Fri, 6 Oct 2006 08:30:53 +0000 Subject: [PATCH] cosmetics git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@2859 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- src/xbt/context.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/xbt/context.c b/src/xbt/context.c index 0e53a7e0c4..9b0fc97848 100644 --- a/src/xbt/context.c +++ b/src/xbt/context.c @@ -101,10 +101,10 @@ static void xbt_context_destroy(xbt_context_t context) #endif if(context->exception) free(context->exception); - #ifdef USE_WIN_CONTEXT - if(context->uc.uc_stack.ss_sp) - free (context->uc.uc_stack.ss_sp); - #endif +#ifdef USE_WIN_CONTEXT + if(context->uc.uc_stack.ss_sp) + free (context->uc.uc_stack.ss_sp); +#endif free(context); return; @@ -284,12 +284,12 @@ xbt_context_t xbt_context_new(xbt_context_function_t code, /* WARNING : when this context is over, the current_context (i.e. the father), is awaken... Theorically, the wrapper should prevent using this feature. */ -# ifndef USE_WIN_CONTEXT - res->uc.uc_stack.ss_sp = pth_skaddr_makecontext(res->stack,STACK_SIZE); - res->uc.uc_stack.ss_size = pth_sksize_makecontext(res->stack,STACK_SIZE); -#else +# ifdef USE_WIN_CONTEXT res->uc.uc_stack.ss_sp = xbt_malloc(STACK_SIZE); res->uc.uc_stack.ss_size = STACK_SIZE ; +#else + res->uc.uc_stack.ss_sp = pth_skaddr_makecontext(res->stack,STACK_SIZE); + res->uc.uc_stack.ss_size = pth_sksize_makecontext(res->stack,STACK_SIZE); # endif /* USE_WIN_CONTEXT */ #endif /* USE_PTHREADS or not */ res->argc = argc; -- 2.20.1