Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Reduce the amount of implicit include directories
[simgrid.git] / src / simix / smx_context_sysv.c
index e074c52..0502499 100644 (file)
@@ -1,6 +1,6 @@
 /* context_sysv - context switching with ucontexts from System V           */
 
-/* Copyright (c) 2009-2014. The SimGrid Team.
+/* Copyright (c) 2009-2015. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
@@ -10,8 +10,8 @@
 
 #include "xbt/parmap.h"
 #include "smx_private.h"
-#include "internal_config.h"
-#include "context_sysv_config.h"        /* loads context system definitions */
+#include "src/internal_config.h"
+#include "src/context_sysv_config.h"        /* loads context system definitions */
 #include "mc/mc.h"
 
 #ifdef _XBT_WIN32
@@ -152,10 +152,12 @@ smx_ctx_sysv_create_context(xbt_main_func_t code, int argc, char **argv,
       sysv_maestro_context = context;
   }
 
+#ifdef HAVE_MC
   if (MC_is_active() && code) {
-    MC_new_stack_area(context->stack, ((smx_context_t)context)->process,
+    MC_register_stack_area(context->stack, ((smx_context_t)context)->process,
                       &(context->uc), smx_context_usable_stack_size);
   }
+#endif
 
   return (smx_context_t) context;
 }