X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/595e59c568ff5f8510de201bfd800951cdc2adcb..863aeead864a309c494893a1b06ec33ed2b7daf1:/src/kernel/context/ContextRaw.cpp diff --git a/src/kernel/context/ContextRaw.cpp b/src/kernel/context/ContextRaw.cpp index 5afc40f350..057d46e8da 100644 --- a/src/kernel/context/ContextRaw.cpp +++ b/src/kernel/context/ContextRaw.cpp @@ -3,13 +3,12 @@ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ -#include "src/internal_config.h" +#include "src/internal_config.h" #include "xbt/parmap.h" #include "src/simix/smx_private.h" #include "mc/mc.h" -#include "src/mc/mc_ignore.h" XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(simix_context); @@ -24,12 +23,12 @@ class RawContextFactory; /** @brief Fast context switching inspired from SystemV ucontexts. * - * The main difference to the System V context is that Raw Contexts are much faster because they don't + * The main difference to the System V context is that Raw Contexts are much faster because they don't * preserve the signal mask when switching. This saves a system call (at least on Linux) on each context switch. */ class RawContext : public Context { protected: - void* stack_ = nullptr; + void* stack_ = nullptr; /** pointer to top the stack stack */ void* stack_top_ = nullptr; public: